Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 4,901 through 4,925 (of 64,394 total)
  • Author
    Search Results
  • #208853
    Robin W
    Moderator

    I suspect that another plugin or your theme is causing this.

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    artmuns
    Participant

    This is an odd one. I set a topic to Super Sticky but was unable to change to Normal. After Update it would revert back to Super Sticky. I was able to change to Sticky from Super Stick but still can not change to Normal.

    Wordpress 5.3.2
    bbPress 2.4.6

    musiclibraryreport.com

    Thanks for any help.

    #208837
    bigskyry
    Participant

    We are hosted on Kinsta and are considering testing Redis for object caching to improve bbPress performance.

    Questions:

    1. Any particular advice on specific recommendations for configuration?
    2. Anyone else use Redis and see improvements? How did you measure those improvements?

    Caveat: * we are also a membership-based site (MemberMouse) and forum posting is a privilege of certain membership levels.

    #208828
    Alpo
    Participant

    I have the latest WP version and bbPress version installed as vell.

    Now I faced a challenge, since we have several organisations on our site and each of them have their own discussion forums.

    When forum moderator wants to edit forum thread, the moderator is able to see other forums and even move topics to other organization forum.

    Now comes the question:
    Are there any ways how to hide site forums existence and prevent moving threads to other forums?

    Thank you in advance!

    wordpresser
    Participant

    Hi all,
    I have deleted bbpress about a month ago, and google still crawling its data. I have many error pages on coverage and most of them like these:

    ?bbp_reply_to=6804&_wpnonce=2637e1a871
    ?bbp_reply_to=6804&_wpnonce=6dc026a681
    ?bbp_reply_to=6602&_wpnonce=b033dc5d03
    ?bbp_reply_to=6602&_wpnonce=83220f89ce
    ?bbp_reply_to=7816&_wpnonce=4380d31098

    I think these are refering to bbpress reply and causing Alternate page with proper canonical tag.

    google is hitting my site too much, and I am trying to figure out the reason, and discovered that google is crawling 19k pages and all errors.

    can someone please tell me how to solve this or delete the date completely? before deleting bbpress, I reset all forums and cleared everything but still google sees them.

    #208821
    ichameleon
    Participant

    Hi – I have successfully added a bbpress forum (Version 2.6.4) to a new site with a custom theme on WordPress (5.3.2). I’m wondering if anyone can help recommend plugins to tackle some (I think) fairly standard requirements.

    I’ve tried a few combinations myself without complete success so I’d really appreciate some guidance.

    I’m trying to –

    • Allow user registration (sign up, get password, manage profile, password reminder),
    • Admin manually approve/suspend/delete users,
    • Prevent spam,
    • Import users from the previous forum using a csv of username and email.

    Sorry if it all seems a bit basic but I’m tying myself up in knots finding the right plugins.

    #208809
    jerylio478
    Participant

    hi, our bbpress question

    https://wn-info.com/?post_type=forum

    my bbpress this page can not look

    but

    <https://wn-info.com/?forum=%e4%b8%ad%e5%8f%a4%e8%bb%8a%e8%a8%8e%e8%ab%96%e5%8d%80&gt;

    under group can be see

    why?

    #208804
    vinem
    Participant

    Hi there,

    I’m building a website with Elementor Pro and bbPress.
    I created 2 different Headers: a main one for the Landing page and blog, and another one for the forums.
    I used the shortcode to display the forums index on a page I’ve built with Elementor and the Header works fine. But when it comes to the automatically created single pages (topic, reply, search, etc.), it displays the main Header.

    I contacted Elementor support, not knowing if the issue was on their side or on yours, and they told me I had to contact you, explaining me this :
    “For your information, we usually find this happening when creating custom post types where it is excluded from showing in menus via the custom post type’s “show_in_nav_menus” option; this option is found in the post type’s “register_post_type” function used to add it in WordPress and may be set to “false” in this case […] we highly recommend contacting the bbPress support team to help with changing this option to “true”. The solution we suspect would be similar to using the function code mentioned in this bbPress support post but with the ‘show_in_nav_menus’ variable set to ‘true’ > https://bbpress.org/forums/topic/plugin-snippet-hack-to-include-bbpress-topics-in-wordpress-search/

    So, here I am! Can someone help me, please?

    Thank you!

    #208801
    ElPrebsi
    Participant

    After the last update, all pages disappeared from the front page.
    “Could not find page”. As if permalink was wrong.
    They could all be seen on the admin side.
    When I disabled bbpress they all reappeared.
    Do I really need to disable bbpress to make the pages work?

    #208791

    In reply to: Code example window

    Chuckie
    Participant

    This is answered here:

    Syntax Highlight

    #208790

    In reply to: Syntax Highlight

    Chuckie
    Participant

    I just wanted to point out that Enlighter is a fantastic plugin for syntax highlighting.

    Enlighter – Customizable Syntax Highlighter

    The current version works with bbPress 2.6 although it has a conflict of interest with one feature. It is discussed here:

    https://github.com/EnlighterJS/Plugin.WordPress/issues/211

    At the moment I don’t really know how I can supress the conflicting CSS styles referred to in the above link.

    I should also point out that at the moment the version 4 beta is not working with bbPress yet. Although, it is supposed to resolve the aforementioned issue concerning conflicting CSS styles.

    Eitherway, I am happy to know about Enlighter. Thumbs up from me!

    #208786

    In reply to: Character Count

    jemar707
    Participant

    I tried to post as code….will try again. But this didn’t work.

    function rew_max_length ($reply_content) {
    	if (strlen($reply_content)<500) {
    		bbp_add_error( 'bbp_reply_content', __( '<strong>ERROR</strong>: Your reply must be less than 500 characters.', 'bbpress' ) );
    	}
    return $reply_content ;
    }
    
    add_filter( 'bbp_new_reply_pre_content', 'rew_max_length' );
    #208783

    In reply to: Character Count

    Robin W
    Moderator

    I don’t know how technical you are, this one does the opposite

    function rew_min_length ($reply_content) {
    	if (strlen($reply_content)<61) {
    		bbp_add_error( 'bbp_reply_content', __( '<strong>ERROR</strong>: Your reply must be at least 60 characters.', 'bbpress' ) );
    	}
    return $reply_content ;
    }
    
    add_filter( 'bbp_new_reply_pre_content', 'rew_min_length' );
    #208768

    In reply to: 404 after update

    andrew55
    Participant

    Oddly, the sidebar content for user shows (username, links to topics, etc.) even though there is a 404 error where the main forums should be. I tried running bbPress with almost all plugins disabled and default theme enabled – still get the 404. But when main page is refreshed, forums display correctly.

    #208762
    Robin W
    Moderator

    sorry, we only fix bbpress issues 🙂

    #208754
    Afreko Media
    Participant

    Hi again Robin,

    Trying my luck now as it’s no longer for the bbpress part of the page but I’m facing a similar issue with a post carousel I have.

    carousel

    I tried editing the css code you provided me but with no luck.

    Any suggestion?

    Thank you,
    Kev

    #208753
    pil91
    Participant

    Hi
    I have the following trouble with the ‘Hello’ theme :
    The bbPress root ‘forums’ isn’t displayed correctly with Hello although it’s ok with ‘twenty twenty’.
    hello vs twenty

    #208749
    jemar707
    Participant

    Thank you! I sent some love through PP on your website for all your work! Hoping I can take this and make it work for topics too.

    I tagged you in an old separate topic if you have any solutions for my replies problem on the front end:

    Redirection when newest replies are at the top.

    #208748
    Robin W
    Moderator

    basically bbpress has the ability to add columns via a filter

    This should do it

    add_filter("bbp_admin_replies_column_headers", 'rew_IP_column_add');
    add_filter("manage_reply_posts_custom_column", 'rew_IP_column_value', 10, 3);
    
    function rew_IP_column_add($columns)  {
    	$new = array();
      foreach($columns as $key => $title) {
        if ($key=='bbp_reply_forum') // Put the forum ID column before the Replies forum column
          $new['rew_id'] = 'IP Address';
        $new[$key] = $title;
      }
      return $new;
    }
    	
    function rew_IP_column_value($column_name, $id) {
    		if ($column_name == 'rew_id') echo get_post_meta( $id, '_bbp_author_ip', true );
    }

    Put this in your child theme’s function file – or use

    Code Snippets

    #208739

    In reply to: Shortcode

    Matthias
    Participant

    I found this code and can now show five popular entries on my frontpage 🙂
    // Top five of bbpress on startpage
    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’ );

    Thanks
    Matthias

    #208732
    thomei
    Participant

    @lflier
    Wow, this really solves the issue with Visual Editor content styling. Thank you very much!

    unction bbp_enable_visual_editor( $args = array() ) {
        $args['tinymce'] = array( 
                'content_css' => '/wp-content/themes/mytheme/css/tinymce-editor.css',
            );
        return $args;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

    How to add this to: https://codex.bbpress.org/enable-visual-editor/ ?

    #208667
    Robin W
    Moderator

    not certain this will work, but put this in the custom css area of your theme

    #bbpress-forums ul li::before {
    content : none !important ;
    }
    #208661
    Afreko Media
    Participant

    Hi there,

    New to bbpress plugin and we’re busy setting it up. Upon installation we noticed that some icons are rendering in the forum which I quickly found out shouldn’t be there.

    Any one that know how to remove these orange icons from the forum part?

    Annotation-2020-02-13-100721

    Any help is appreciated.

    Thanks,
    Kevin

    #208643
    burhi
    Participant

    Hi,

    remove_filter( 'bbp_get_reply_content', 'bbp_make_clickable', 4);
    remove_filter( 'bbp_get_topic_content', 'bbp_make_clickable', 4); 

    not work bbpress 2.6.4

    is there any new code?

    #208637
    Robin W
    Moderator

    registration is a function of WordPress, not bbpress.

    you can switch it off using

    Disable New User Notification Emails

Viewing 25 results - 4,901 through 4,925 (of 64,394 total)
Skip to toolbar