BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: My old activities are in top, How to fix? #44237

    Hello Shahab,

    Welcome to the BuddyDev Forums. It is the default behaviour of BuddyPress. By default, BuddyPress lists activities in order by date recorded. Are you using any kind of custom code or plugin which affect the activity loop?.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Hiding title #44236

    Hello Giuseppe,

    Thank you for the acknowledgement. I am glad that the problem is resolved on your own.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Hiding title #44233

    Hello Giuseppe,

    Please point me to the exact page so that I can assist you.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Hiding title #44231

    Hello Giuseppe,

    Try using the following CSS rule it will hide H3 tag.

    
    #buddypress #item-body h3 {
        display: none;
    }
    
    

    Note: It will hide all h3 tags under buddypress > item-body element. It might have side effect

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Hiding title #44228

    Hello Giuseppe,

    Thank you for posting here. Please point me to the site I will help you with the CSS needed to hide the h3 tag.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Thank you for the acknowledgement. I am glad that I could help.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello,

    Please try the following code:

    
    add_filter( 'bbp_get_reply_author_link', function ( $link ) {
    
    	if ( bbp_is_single_topic() && function_exists( 'bp_user_badges_get_user_badges_html' ) ) {
    		$link = $link . bp_user_badges_get_user_badges_html( bbp_get_reply_author_id() );
    	}
    
    	return $link;
    } );
    
    

    Append on single topic only

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Justin,

    I am glad it was an easy one. It was a pleasure to assist you.

    Regards

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Justin,

    Thank you for using our plugin. You can do this easily with WordPress Export and Import feature. Just export Profile Tabs from Tools > Export > ‘Choose what to export’ select ‘Profile Tabs’. After export go to the admin dashboard Tools > WordPress and run importer.

    Note: Install WordPress importer if not installed.

    Please give it a try.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello,

    Please try the following code:

    
    add_filter( 'bbp_get_reply_author_link', function ( $link ) {
    
    	if ( function_exists( 'bp_user_badges_get_user_badges_html' ) ) {
    		$link = $link . bp_user_badges_get_user_badges_html( bbp_get_reply_author_id() );
    	}
    
    	return $link;
    } );
    
    

    and use the following CSS:

    
    .bbp-reply-author.item-avatar .bp-user-badges-badge-list {
        display: none;
    }
    

    Please check.

    Regards
    Ravi