Replies
- Ravi on September 22, 2020 at 5:38 pm in reply to: How can I add new tag to buddypress activity #33373
Hello Adeala,
Thank you for posting. Please make me little more clear on it are you looking for tagging like “#tag” or is there any other thing I am not being able to get.
Regards
Ravi - Ravi on September 22, 2020 at 5:23 pm in reply to: [Resolved] How can I hide comment from activity page #33372
Hello Adeala,
Please try the following code. It will hide comments on activity directory page.
add_action( 'bp_after_has_activities_parse_args', function ( $r ) { if ( bp_is_activity_directory() ) { $r['display_comments'] = false; } return $r; } );
Please le
- Ravi on September 21, 2020 at 6:52 pm in reply to: [Resolved] mpp-show-gallery display by creator id #33341
Hello Matteo,
Thank you for posting. Please take a look to the following reference and let me know if you needs furthur assistance.
https://buddydev.com/mediapress/shortcodes/mediapress-gallery-listing-shortcodes/#user-parameters
Regards
Ravi - Ravi on September 21, 2020 at 6:47 pm in reply to: [Resolved] How can I hide comment from activity page #33340
Hello Adeala,
Thank you for posting. Try the following way:
add_action( 'bp_after_has_activities_parse_args', function ( $r ) { if ( bp_is_activity_directory() || bp_is_single_activity() ) { $r['display_comments'] = false; } return $r; } );
Regards
Ravi - Ravi on September 21, 2020 at 7:02 am in reply to: [Resolved] Send Private Message Button on Member's directory using Community Builder #33333
Hello Jhonathan,
Thank you for using the theme. Please let me know where are using the code. If using in “bp-custom.php”. Please try the following way.
add_action( 'bp_loaded', function () { add_action( 'bp_directory_members_actions', 'hibuddy_send_private_message_button', 30 ); } );
Regards
Ravi - Ravi on September 19, 2020 at 8:10 am in reply to: Selector to style avatars in BP Members With Uploaded Avatars Widget #33309
Hello carsten,
Thank you for posting. Try following
.buddypress.widget.widget_bp_members_with_uploaded_avatar_widget ul#members-list li .item-avatar { }
Regards
Ravi Hello Ankit,
Thank you for posting. Yes, It can be doable via code. You can check the current user role, member type and based on it you can filter the user’s avatar.
Please check this function
https://github.com/buddypress/BuddyPress/blob/master/src/bp-core/bp-core-avatars.php#L192
Regards
RaviHello Ankit,
Thank you for posting. Please contact your theme developer they will better assist to with this.
Regards
Ravi- Ravi on September 19, 2020 at 5:19 am in reply to: I need help with customizing the registration form!! #33306
Hello Bluesweet,
Thank you for posting. Please try the following css
.buddypress-wrap .register-page .layout-wrap { flex-flow: column; }
Regards
Ravi