Replies
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
RaviHello Giuseppe,
Thank you for the acknowledgement. I am glad that the problem is resolved on your own.
Regards
RaviHello Giuseppe,
Please point me to the exact page so that I can assist you.
Regards
RaviHello 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
RaviHello 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- Ravi on April 1, 2022 at 4:57 am in reply to: [Resolved] badges – can be displayd in the same line with name ? #44227
Thank you for the acknowledgement. I am glad that I could help.
Regards
Ravi - Ravi on March 31, 2022 at 3:49 am in reply to: [Resolved] badges – can be displayd in the same line with name ? #44212
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 - Ravi on March 30, 2022 at 11:38 am in reply to: [Resolved] Export / Import – Migrating BuddyPress User Profile Tabs Creator Pro #44187
Hello Justin,
I am glad it was an easy one. It was a pleasure to assist you.
Regards
- Ravi on March 29, 2022 at 7:11 am in reply to: [Resolved] Export / Import – Migrating BuddyPress User Profile Tabs Creator Pro #44168
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 - Ravi on March 29, 2022 at 5:26 am in reply to: [Resolved] badges – can be displayd in the same line with name ? #44166
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