Replies
Hello Marcos,
Sorry for the inconvenience. Please do let me know are you using BuddyPress or BuddyBoss Platform. Also, Version of “BuddyPress Xprofile Custom Field Types”.
Regards
RaviHello Tosin,
Yes, You have to install the plugin in order to use this shortcode.
On single-user screen you can use shortcodes like:
Replace id with your band detail field group id.
[bp-shortcodes-profile context=display group_id=4]
On the member directory and post screen, you have to provide shortcode attributes dynamically.
Regards
Ravi- This reply was modified 3 years, 12 months ago by
Ravi.
- This reply was modified 3 years, 12 months ago by
Hello Scott,
Thank you for the acknowledgment. Please replace the old code with the following code:
/** * Apply filters */ function buddydev_apply_anonymous_activity_filter() { add_filter( 'bp_anonymous_is_valid_screen', '__return_true' ); } add_action( 'bp_activity_stream_shortcode_before_generate_content', 'buddydev_apply_anonymous_activity_filter' ); add_action( 'wp_ajax_bpas_load_activities', 'buddydev_apply_anonymous_activity_filter', 9 );
Give it a shot.
Regards
Ravi- Ravi on August 10, 2021 at 5:11 am in reply to: [Resolved] BuddyPress Block Users saved settings forgotten when plugin deactivated #40000
Hello Nifty,
Thank you for the acknowledgment. I am glad that I could help.
Regards
Ravi Hello Tosin,
Please check the following code:
It allows displaying user data based on profile field group id. Please let me know if it helps or not.
Regards
Ravi- Ravi on August 9, 2021 at 11:27 am in reply to: [Resolved] BuddyPress Block Users saved settings forgotten when plugin deactivated #39987
Hello Nifty,
Sorry for the inconvenience. It should be on plugin deletion. We have pushed a release with this issue fixed. Please upgrade your plugin and check.
Regards
Ravi Hello Scott,
Please try the following code it will let you post anonymous activity through plugin shortcode. But it will only work with the BuddyPress Legacy template.
add_action( 'bp_template_redirect', function () { // Replace id with your shortcode page id. if ( is_page( 110 ) ) { add_filter( 'bp_anonymous_is_valid_screen', '__return_true' ); } } );
Regards
Ravi- Ravi on August 7, 2021 at 4:09 pm in reply to: [Resolved] Buddycircles message button broken on Buddyboss #39973
Hello Philip,
Sorry for the delayed reply. We added support for the BuddyBoss. Please download the latest version of the plugin and give it a shot.
Regards
Ravi - Ravi on August 6, 2021 at 5:19 am in reply to: [Resolved] How to remove member from a groups forum when member is removed from the group? #39966
Hello Torben,
Thank you for the kind words. I am glad that I could help.
Regards
Ravi Hello Dave,
Thank you for the acknowledgment. But this does not make the issue clear. Please try to debug it more to get the actual error. Take the reference from the following document and post the actual error.
https://wordpress.org/support/article/debugging-in-wordpress/
Regards
Ravi- This reply was modified 3 years, 12 months ago by
Ravi.
- This reply was modified 3 years, 12 months ago by