Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 8,001 through 8,025 (of 64,471 total)
  • Author
    Search Results
  • #188174
    morpheus978
    Participant

    Founded a workaround disabling yoast seo breadcrumbs in my theme files by using the conditional tag is_bbpress(). I will use the bbpress breadcrumbs in the forum pages.

    #188149

    In reply to: feeds bug

    DAM
    Participant

    https://bbpress.trac.wordpress.org/ticket/2961
    we have the same bug again after the update

    #188148
    Robin W
    Moderator

    I go to login to my forum and it redirects me to the user dashboard of WooCommerce.

    just tried it and it seemed fine – is woocommerce active?

    Plus the BBPress toolbar no longer will appear at the top so people can’t see the links to their profile and forums.

    not sure quite what you mean by the bbpress toolcar – do you mean the wordpress one?

    #188147
    jasonbutler1818
    Participant

    Hi, when WooCommerce is off the BBpress plugin works right.

    But when WooCommerce is on.

    I go to login to my forum and it redirects me to the user dashboard of WooCommerce. Plus the BBPress toolbar no longer will appear at the top so people can’t see the links to their profile and forums.

    Please take a look I can figure out what the issue is.

    This is the site: elizabethscovil.com/community/

    Thank you for your time.

    #188145
    Mauro
    Participant

    I found the pieces and bits necessary to make this happen.

    
    // ALTER TinyMCE INIT FOR VISUAL EDITOR ON FORUM TOPICS AND REPLIES
    // SOURCE: https://bbpress.org/forums/topic/alter-mceinit-for-visual-editor-on-topics/
    
    // Enable visual editor on tinymce in bbPress
    function bbp_enable_visual_editor( $args = array() ) {
        $args['tinymce'] = true;
        return $args;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
    
    // Enable TinyMCE paste plugin
    function bbp_add_paste_plugin($args) {
      $args[] = 'paste';
      return $args;
    }
    add_filter( 'teeny_mce_plugins', 'bbp_add_paste_plugin');
    
    // ADDS A JQUERY PASTE PREPROCESSOR TO REMOVE DISALLOWED TAGS WHILE PASTING
    // SOURCE https://jonathannicol.com/blog/2015/02/19/clean-pasted-text-in-wordpress/
    function configure_tinymce($in) {
      $in['paste_preprocess'] = "function(plugin, args){
        // Strip all HTML tags except those we have whitelisted
        var whitelist = 'a,p,span,b,strong,i,em,h3,h4,h5,h6,ul,li,ol';
        var stripped = jQuery('<div>' + args.content + '</div>');
        var els = stripped.find('*').not(whitelist);
        for (var i = els.length - 1; i >= 0; i--) {
          var e = els[i];
          jQuery(e).replaceWith(e.innerHTML);
        }
        // Strip all class and id attributes
        stripped.find('*').removeAttr('id').removeAttr('class');
        // Return the clean HTML
        args.content = stripped.html();
      }";
      return $in;
    }
    add_filter('teeny_mce_before_init','configure_tinymce', 99999999999);
    
    #188142
    navik91
    Participant

    Hi Everyone!
    I use bbpress with polyling. I have 2 languages on the site – English and Russian. When I switch to a user profile, the link like this /forums/users/. But I need the links to be like this, for english – /en/forums/users/ or for russian – /ru/forums/users/. How can this be done? Thanks for the response.
    P.S. Sorry for my bad english.

    #188141
    #188140

    Topic: Widget help

    in forum Installation
    carzpk
    Participant

    Need help pleass
    I have installed the bbpress plugin and but its not showing in widget section like i cant add widget to it
    Also in the forum everything is white like these buttons where you can post a topic
    I am latest wordpress and using premium theme

    Thankyou

    #188136
    Robin W
    Moderator

    not tested but try adding this to your functions file

    add_filter( 'bbp_get_reply_author_display_name', 'rew_display_first_name' 10, 2);
    
    function rew_display_first_name ($author_name, $reply_id ) {
    	$reply_id = bbp_get_reply_id( $reply_id );
    
    		// User is not a guest
    		if ( !bbp_is_reply_anonymous( $reply_id ) ) {
    
    			// Get the author ID
    			$author_id = bbp_get_reply_author_id( $reply_id );
    
    			// Try to get a display name
    			$author_name = get_the_author_meta( 'first_name', $author_id );
    
    			// Fall back to user login
    			if ( empty( $author_name ) ) {
    				$author_name = get_the_author_meta( 'user_login', $author_id );
    			}
    
    		// User does not have an account
    		} else {
    			$author_name = get_post_meta( $reply_id, '_bbp_anonymous_name', true );
    		}
    
    		// If nothing could be found anywhere, use Anonymous
    		if ( empty( $author_name ) )
    			$author_name = __( 'Anonymous', 'bbpress' );
    
    		// Encode possible UTF8 display names
    		if ( seems_utf8( $author_name ) === false )
    			$author_name = utf8_encode( $author_name );
    
    return apply_filters( 'rew_display_first_name', $author_name, $reply_id );
    }
    aaronbennett2097
    Participant

    Hi everyone.

    I’m trying to change the loop-single-reply template to display the users first name instead of username, I’ve created a child theme and have the necessary templates in the bbpress folder, I think it’s the following line I need to replace…

    <?php bbp_reply_author_link( array( ‘sep’ => ‘<br />’, ‘show_role’ => false ) ); ?>

    From what I can tell, this displays the avatar and username, whereas I want it to show the avatar then firstname, but not found any way to do this.

    Does anyone have any ideas?

    Thanks

    #188127
    andrey90
    Participant

    is it possible to create two forums? because I have a forum on my site for free users and the second forum with other topics should be for the pay users, the two forums are separated by two different pages on the site, so i need two forums with one database. I would block the pay forum with a “paid membership” addon for free users.

    but as i can see i can just create one forum with one shortcode in bbpress?

    #188112
    richard.miller
    Participant

    Just installed BBPress, and see that the editor is barebones html.

    I’ve learned from this codex page that the visual editor is disabled by default – so I added the code snippet to my functions file, but no effect at all. Added TinyMCE Advance plugin, no effect at all.

    What could be wrong?

    (note: I see all sorts of references to “enable fancy WP editor” in older posts here, but can’t find that setting)

    WP 4.8.3
    BBpress: 2.5.14

    Robin W
    Moderator

    these sortcodes are theme(or other plugin) related, not bbpress.

    what theme are you using?

    #188104
    Jennifer Brueske
    Participant

    After struggling with this on my site for a few days, I found https://bbpress.org/forums/topic/bbpress-with-toolkit-tinymce-breaks-on-nested-reply/#post-188103

    And after adding those two lines, it was working. I had to add them to the reply.min.js though.

    #188100
    jasonbutler1818
    Participant

    Hi, when WooCommerce is off the BBpress plugin works right.

    But when WooCommerce is on.

    I go to login to my forum and it redirects me to the user dashboard of WooCommerce. Plus the BBPress toolbar no longer will appear at the top so people can’t see the links to their profile and forums.

    Please take a look I can figure out what the issue is. Thank you for your time.

    manm0untain
    Participant

    Hi

    some of the groups on our site are getting quite busy. We are getting regular complaints from group admin users, that they can’t organize their forums into subforums etc. Without that, forums kind of spin out of control with no organization.

    We can create subforums for them, but it’s a bit time consuming.

    If group admins are creating those forums along with their groups, surely there is a way that those users can create subforums too?

    If anyone has any info or feedback on this it would be very appreciated, thanks 🙂

    WP version: 4.8.2
    BBPress version: 2.5.13

    #188091
    coreymcollins
    Participant

    I’ve been fighting with how to enable the Topics CPT for all users in the dashboard and not having a great time. I thought I could, perhaps, filter the CPT registration to change the CPT caps and show_ui settings, but no luck.

    Even when I am able to get the Topics CPT to display for all users by commenting out the lines noted below as a test:

    
    // Register Topic content type
    register_post_type(
    	bbp_get_topic_post_type(),
    	apply_filters( 'bbp_register_topic_post_type', array(
    		'labels'              => bbp_get_topic_post_type_labels(),
    		'rewrite'             => bbp_get_topic_post_type_rewrite(),
    		'supports'            => bbp_get_topic_post_type_supports(),
    		'description'         => __( 'bbPress Topics', 'bbpress' ),
    		// 'capabilities'        => bbp_get_topic_caps(),
    		// 'capability_type'     => array( 'topic', 'topics' ),
    		'menu_position'       => 999999999999,
    		'has_archive'         => ( 'forums' === bbp_show_on_root() ) ? bbp_get_topic_archive_slug() : false,
    		'exclude_from_search' => true,
    		'show_in_nav_menus'   => false,
    		'public'              => true,
    		// 'show_ui'             => current_user_can( 'bbp_topics_admin' ),
    		'can_export'          => true,
    		'hierarchical'        => false,
    		'query_var'           => true,
    		'menu_icon'           => ''
    	)
    ) );
    

    Things still don’t completely work. Users can technically create a post, but can’t save the Forum in which the post is created.

    The short of it is: I want users with the Participant Forum Role to be able to see the Topics CPT in the dashboard so they can create their posts here, mainly because it would be helpful for them to be able to Preview a topic before posting it. Out of the box, the front-end bbPress form does not allow for post previews.

    Has anyone achieved this?

    Using:
    WP 4.8.3
    bbPress 2.5.14

    #188090

    If me, I will create child theme of bbpress and edit the file.

    #188089

    In reply to: How to save space?

    My ideas:
    The first one is the best.
    But i think the content in bbpress not eat space much.

    #188087
    Georgio
    Participant

    Hi
    I need your feedback on how to save space with bbpress in bp group forums. What methods do you use?

    My ideas so far:

    -Have subscribe role & author role keymasters and allow only authors to create forums in their groups. Seems easy to implement with a conditional in the bbpress creation template.

    -Set a limit to topic creation, e.g. 100 topics. Is this technically possible?
    Otherwise set 100 topics/page and hide the pagination links so only the first page is visible. This will force the group keymaster to always delete some topics so that newer ones can be visible.

    -Delete old topics automatically or close automatically inactive topics and then delete them from the site admin dashboard. Any idea how to do that?

    -Set a twitter-style limit to the topic & replies, e.g only 300 caracters. Is that possible?

    Thanks in advance for your feedback.

    #188080
    virengupta
    Participant

    Hi,

    Thank you for replying,

    Yes, i had to deactivate UM-BBpress in order to correct the problem. but now i am facing another problem, if you visit my site in mobile view, the menu is just too long. I know this is a bbpress forum but can you me help me with it?

    #188079
    rezadan
    Participant

    Hello,
    Is there any way to change the font size of freshness time since?

    How can the font size of post count under Posts in BBpress version 2.5.14 be changed?

    Is there any way to change the font color of REPLY which appears in the header of reply to the post?

    Reza

    #188056
    docaj
    Participant

    I have been struggling with this strange problem. We use bbpress with wordpress. Nobody (except for the site admin) can create a topic or reply in the forum containing the word “breast”. We have to intentionally misspell it as “breastt” or something like that. We have uninstalled Akismet. We do not have any spam filter or content filter plugins. Also checked Settings – Discussion, and Comment Moderation and Comment Blacklist are entirely empty. Any idea what is blocking this word? Thanks!

    #188047
    Robin W
    Moderator

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

Viewing 25 results - 8,001 through 8,025 (of 64,471 total)
Skip to toolbar