Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 11,051 through 11,075 (of 64,535 total)
  • Author
    Search Results
  • #176114

    In reply to: I am Newbie

    Pascal Casier
    Moderator

    Hi,
    If you are having a small font for bbPress, then most probably your theme is having a standard small font size. CSS is indeed an option to go, but you will have to check in your environment where you have to copy this part. It might be something like:

    #bbpress-forums .bbp-topic-content,
    #bbpress-forums .bbp-reply-content  {
      font-size: 16px;
    }

    Otherwise you might try plugins like ‘bbp style pack’ to help styling your forum
    Pascal.

    #176112
    Pascal Casier
    Moderator

    Hi,
    Your WordPress and bbPress version work well together, so I don’t think the issue is on that side. As bbPress is just using WordPress registered users, it is probably a conflict in your theme or one of the other plugins.
    Pascal.

    #176111
    khunmax
    Participant

    embed conflict.

    My thread here:

    BUG: when pasting #reply URL in reply

    khunmax
    Participant

    Problem:
    I want a New Topics page and a Top Ten Topics page for my forum.

    What I have done already:
    I used Robins shortcode to create the New Topics page set as follows:

    [bbp-display-topic-index show=’25’ template=’short’]

    It displays nicely with no search bar, breadcrumbs, viewing x topics, or pagination.

    I have reviewed Robkks code provided here:

    table with most popular topics

    The code is as follows:

    function rk_top_five_view() {
    bbp_register_view( 'top-five', __( '5 Most Popular Topics' ), array( 
        'meta_key' => '_bbp_reply_count',
        'posts_per_page' => '5' ,
        ' max_num_pages' => '1', 
        'orderby' => 'meta_value_num' ),
    false );
    }
    
    add_action( 'bbp_register_views', 'rk_top_five_view' );

    Unfortunately the resulting page output includes breadcrumbs, viewing x topics, and pagination. The pagination also links to spurious pages.

    What I need help with:
    What code do I need to add to Robkks snippet so that the output page is styled the same as the output from Robins shortcode with no breadcrumbs, viewing x topics, or pagination?

    Thanks in advance for your assistance.

    Kind Regards

    Max

    #176104
    Robkk
    Moderator

    So the plugin you linked to doesn’t really have anything to offer (other than stopping embeds in WP).

    Did you try it? That plugin is specifically for those new WordPress post embeds.

    THe setting I mentioned in the bbPress forum settings removes all embeds (youtube, flickr) including the WordPress post embeds.

    You do not have to use CSS to hide the little post id number.

    Did you try the disable embeds plugin? It may not do the forums specifically, just site wide.

    #176103
    Robkk
    Moderator

    Also, can you explain what you meant by “… or use a plugin like functionality. “.?

    This plugin its called Functionality, its like a plugin that can hold custom php code snippets.

    https://wordpress.org/plugins/functionality/

    Thanks for the code. unfortunately it doesn’t work for my website

    Both of the code snippets I posted should show the forum search above a single topic, single forum, and in search results. Well unless your custom theme has custom bbPress templates with all the available hooks I am using in my code removed.

    can you tell me if its actually worth adding a child theme, if the parent theme is an individually created one by a web design company?

    I mean you do not have to.

    #176102

    Topic: I am Newbie

    in forum Installation
    newbiezo
    Participant

    Hey community!
    I just joined BBPress a day ago, and completely alien to it. I basically want to understand how can you increase font size for the forums as its pretty small. Also if you are telling me to do with CSS. Please tell me where can I find CSS and how can I do it? Where to paste codes, I am in urgent help, please support!
    Heres my community https://www.evilgamers.gq

    #176098
    haddly
    Participant

    Hi Robkk,

    Thanks for the code. unfortunately it doesn’t work for my website. Well, I have a vagrant set up on my computer with a copy website and i test everything there before i make real changes.
    I made a child theme and a style.css file (this works as my wordpress site recognises it) and i made a functions.php file and added the code you gave me. The thing is, i tried some other code that exists on https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#23-show%c2%a0the-bbpress-forum-search-everywhere and they didnt work either.
    any suggestions?
    would greatly appreciate any help.
    thx
    Dan

    #176096
    khunmax
    Participant

    OK… so the option to uncheck embed is already available in the back end of BBpress at: settings/forum/auto-embed links.

    So the plugin you linked to doesn’t really have anything to offer (other than stopping embeds in WP).

    Another ham-fisted way around this bug it to use the css:

    .bbp-reply-header a.bbp-reply-permalink {display:none}

    (which by the way bbpress have done on these forums)

    The downsides are:

    1. no numbering reference on replies if someone want to quote or link to old reply.
    2. In front end profile/replies no link on each reply to take user back to relevant thread.

    What do you think is best: display or not display?

    Are their any other options?

    #176089
    Robkk
    Moderator

    I dont get this logic, despite if it is only WP logic, not bbPress one.
    Maybe I missunderstool it all. New Users (Roles = Subscriber, Participant) have access to add new Posts, and attach them to taxonomies.

    Forum Users are forum USers, not Portal editors of Articles.


    @stagger-lee
    you may need to track back and look at any custom code you may have and see if any is granting users specific permissions that would grant your users to be able to do this. Of course your new forum users shouldn’t be able to do this by default. Regular subscribers/participants should only be able to edit their profile usually.

    #176088
    Robkk
    Moderator

    Look into this topic here for some help. Since you are just replacing the voices column you can do without some of the CSS and just put the views code in the voices column.

    https://bbpress.org/forums/topic/create-new-column-for-topic-posts/

    #176086
    Robkk
    Moderator

    You can turn off the revisions in Settings > Forums.

    https://codex.bbpress.org/features/revisions/

    #176085

    In reply to: What does Robkk do?

    Robkk
    Moderator

    What kind of information are you looking for, because I don’t feel like linking to any specific sites that I have worked on.

    Are you just talking about bbPress in general?

    #176080
    Robkk
    Moderator

    I couldn’t get it to see anything I put in my child theme, because it is accessed through plugins, not themes. I know I’ll have to update the file again manually as soon as I update bbPress.

    You don’t need to change anything in bbPress to do this type of thing, just put any template files in a child theme or custom theme package plugin (there is no info on this but this is possible too).

    https://codex.bbpress.org/themes/theme-compatibility/

    Also, that plugin only allows you to add new fields, not display existing ones. Doesn’t it seem odd that you would be prompted to enter data in fields on user profile edit, but then not have any of them show on view? By default the user fields should be available to show, at least standard ones like description, website, and social media profiles.

    This is the only plugin I can think of that might be easy for some users to display content. If you want contact Robin later in the support forum to see if he would add existing fields to it.

    How are some people not caring about this? It just seems so fundamental to me.

    There is a plan to add certain fields to the profile page in the future, mostly default existing fields for now.

    https://bbpress.trac.wordpress.org/ticket/2570

    #176078
    Robkk
    Moderator

    Use this PHP code place it into a child theme functions.php file or use a plugin like functionality.

    //display bbPress search form in search results
    function rk_bbp_search_form_in_search_results(){
    
        if ( bbp_allow_search() && bbp_is_search_results() ) {
            ?>
            <div class="bbp-search-form">
    
                <?php bbp_get_template_part( 'form', 'search' ); ?>
    
            </div>
            <?php
        }
    }
    
    add_action( 'bbp_template_before_search', 'rk_bbp_search_form_in_search_results' );

    Also look at this guide.

    https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#23-show%c2%a0the-bbpress-forum-search-everywhere

    #176077

    In reply to: Forum Icons

    Robkk
    Moderator

    Thats a different forum plugin, but its just an unread posts feature that added the icons. Thre is an unread posts plugin for bbPress that can do the same thing if you use a similar image.

    #176075

    In reply to: Styling nested replies

    Robkk
    Moderator

    You can use this class before another class in a reply to style the threads.

    .bbp-threaded-replies

    This class only appears if you enabled threaded replies.

    https://codex.bbpress.org/features/reply-threading/

    #176074
    Robkk
    Moderator

    You can disable threaded replies for now to fix the issue, there is currently an issue with some of the responsive styles and some markup that is broken somewhere while activating threaded replies.

    https://bbpress.trac.wordpress.org/ticket/2757

    There is also a way to keep threaded replies and just changing your layout to a more mobile first layout, but threaded replies has some other issues that users might encounter like not having pagination.

    #176073
    Robkk
    Moderator

    There are a few WordPress themes that you can use.

    WP Knowledge Base

    Stargazer Colloquium

    Eighties

    There are also other free themes that add functionality for bbPress here and there.

    And there are a few good premium themes on themeforest.

    #176071

    In reply to: Login form problems

    Robkk
    Moderator

    Actually bbPress does not have a “thank you page” instead I think it mostly piggybacks off of the default WordPress registration process and this issue you are talking about seems sort of common, but I think the whole frontend forms bbPress provides are either incomplete functionality or functionality that has broken along the way through upgrades in WordPress or something.

    You do not necessarily have to use the frontend forms anyway, as all your users can just the default WordPress registration forms. Or use another plugin for now for frontend forms like Theme My Login.

    #176068
    Robkk
    Moderator

    bbP toolkit has this feature too, if you do not want to use Robins plugin.

    Also if you don’t care in paying, or don’t know already the premium version of GD bbPress tools called GD bbPress Toolbox has this feature too.

    #176067
    Robkk
    Moderator

    Before Posting

    Yes these ^^

    There is a plugin to disable across your whole site

    https://wordpress.org/plugins/disable-embeds/

    We might add an option to the bbPress plugin to turn this off, or include this WordPress post oEMBED to the already present enable auto embed option.

    In your post you said random images show up and some screen flicker? This makes it sound like a really bad bug, but thinking over it, is it just the icon images (share icon, WordPress logo, possibly a comment icon), and the post embed loading?

    EDIT: Actually disabling auto-embed in your forums will also stop the WordPress post oEMBED feature.

    #176065
    Robkk
    Moderator

    Yes for now threaded replies do not have pagination. There is a ticket introduce pagination, but it might have issues with other areas in bbPress, like private forum functionality.

    #176062
    khunmax
    Participant

    I have found a rather nasty bug:

    Details:

    If you right click on the (reply #number) in the top right of a topic reply, you can then click to copy link address.

    If you then paste this address into a new reply form and submit, the result is a screwed up blockquote of the Topic name and some random graphics.

    It appears to be conflict between bbpress and the WordPress 4.4 content embed feature.

    On my local host installation it also causes screen flicker in a loop.

    I discovered this when trying to look for a quote replies solution.

    Any chance we can do something to block/stop/patch it.

    Kind Regards

    Max

    #176060
    khunmax
    Participant

    BUMP

    Robin I have installed your OK FINAL ANSWER code listed above and all works as it should with one small BUG.

    If I am logged in as admin and then click on your MY profile link I am not taken to my BBpress front end profile page but rather to an error page:
    ———-
    Oops! That page can’t be found.

    It looks like nothing was found at this location. Maybe try searching?
    ———-
    Can anyone assist me to edit the code so when someone logged in as admin click on the my profile link they are taken to his or her BBpress front end profile.

    Thanks in advance for any assistance you can provide.

    Kind Regards

    Max

Viewing 25 results - 11,051 through 11,075 (of 64,535 total)
Skip to toolbar