Replies
- Ravi on January 4, 2022 at 7:41 am in reply to: [Resolved] Adding a second control to Member’s activity loop #42373
Hello Mike,
Thank you for sharing the details. I will look for the solution and will get back to you.
Regards
Ravi Hello Jimmy,
I have tested it on my local development and it is working fine for me. Please share your staging site credentials so that I can check the issue.
Regards
RaviHello Daniel,
Thank you for sharing the solution. I am glad that the problem is resolved on your own.
Regards
RaviHello David,
Try the following code
add_filter( 'bp_get_template_locations', function ( $locations ) { $locations[] = 'community-new'; return $locations; } );
It will now check for a directory with the name ‘community-new’ for templates.
Regards
Ravi- Ravi on January 3, 2022 at 4:39 pm in reply to: [Resolved] BuddyPress Block Users: Blocked user can still message in existing thread #42359
Hello Nifty,
Thank you for reporting the issue. Yes, It is a bug with the legacy template pack. We have updated the plugin. Please upgrade to the newer version of the plugin and give it a try.
Regards
Ravi - Ravi on January 3, 2022 at 9:35 am in reply to: [Resolved] BuddyPress Moderation Tools: Hiding Suspended User’s Profile #42353
Hello Nifty,
Please upgrade your plugin and Give it a try. Now the user will be redirected to the member’s directory if try to access the suspended user profile.
Regards
Ravi - Ravi on January 3, 2022 at 6:09 am in reply to: [Resolved] Adding a second control to Member’s activity loop #42351
Hello Mike,
Thank you for sharing the details. With Legacy you can add the custom filter options like the following code:
add_filter( 'bp_get_activity_show_filters_options', function ( $options ) { // If not on single user screen return default options. if ( ! bp_is_user() ) { return $options; } if ( ! isset( $options['asc'] ) ) { $options['asc'] = __( 'Ascending Order' ); } if ( ! isset( $options['desc'] ) ) { $options['desc'] = __( 'Descending Order' ); } return $options; } );
Then you can filter activity based on these options. Please let me know if it helps or not.
Regards
Ravi Hello David,
Try the filter ‘bp_get_template_locations’ provided by BuddyPress. Please check and let me know if it helps you or not.
Regards
RaviHello Daniel,
Thank you for posting. Please try ‘posts’ instead of ‘author’ and then give it a try. Please check the following screenshot
https://www.awesomescreenshot.com/image/19430895?key=0371deab9a9791ca8033264aef9b8d99
If not provided use ‘post’
Regards
Ravi- Ravi on December 28, 2021 at 6:49 am in reply to: Username changer – Disallow space, missing error messages and remove header #42293
Hello Derrick,
I have tested this plugin and it is working fine for me. Are you able to see other feedback messages?.
This issue is coming probably with your custom theme. Please try after switching to the default WordPress theme. Also, let me know which template pack you are using i.e. Nouveau or Legacy.Regards
Ravi