Replies
Hello Paul
Sorry for the inconvenience. What is the issue you are facing with BuddyBlog Pro? You can share the screenshots of the problem. We will help you.
Regards
Ravi- Ravi on June 7, 2023 at 5:29 am in reply to: [Resolved] Any chance of adding a redirect option to the profile completion plugin? #49686
Hello John,
Thank you for posting. Please try the following code it will redirect the user to mentioned URL once their profile gets complete
add_action( 'bpprocn_user_profile_completed', function ( $user_id ) { // Provide your redirect url here $location_url = ''; bp_core_redirect( $location_url ); exit; } );
Please check and let me know if it helps or not.
Regards
Ravi Hello Tosin,
Thank you for the acknowledgement. I will give it a try as you suggested and let you know.
Regards
RaviHello,
Thank you for the acknowledgement. But I am sorry, this is not doable with any of our plugins currently.
Regards
RaviHello,
Thank you for the question. Since you are using BuddyBoss, Please contact their support for assistance with it.
Regards
Ravi- Ravi on May 30, 2023 at 5:47 am in reply to: Buddypress 0 How to set the show_in_rest to true #49619
Hello Tom,
Welcome to the BuddyDev Forums. I am unable to understand your requirement clearly. Please explain more. Have you written any custom code to achieve this if yes share it too.
Regards
Ravi - Ravi on May 25, 2023 at 4:54 am in reply to: Need a way to notify admin of profile completion… #49599
Hello John,
Thank you for using BuddyPress Profile Completion plugin, Please use the following code to notify site admin on profile completion.
add_action( 'bpprocn_user_profile_completed', function ( $user_id ) { if ( ! function_exists( 'buddypress' ) ) { return; } $admin_email = get_option( 'admin_email', '' ); $subject = __( 'New user profile completed' ); $message = __( 'User profile completed: ' ) . bp_core_get_user_displayname( $user_id ) . ' (' . bp_core_get_user_domain( $user_id ) . ')'; @wp_mail( $admin_email, $subject, $message ); } );
Please give it a try.
Regards
Ravi Hello Tosin,
Sorry for the inconvenience. I have checked the plugin with HPOS enabled and disabled modes, and it works fine for me. Please try again and see if there is another plugin or custom code snippet causing this issue. Please let me know if you find anything or not. I will help you.
Regards
Ravi- Ravi on May 16, 2023 at 11:19 am in reply to: BuddyPress Moderation Tools -The report button is duplicated in buddyboss groups #49537
Hello Roberto,
It seems it is an issue with the BuddyBoss Platform. Look at the following:
Here you can see they are calling the ‘bp_nouveau_group_header_buttons’ function twice which is causing the issue. Please contact BuddyBoss for the same they can help you with this. Please let me know if you need any further assistance.
Regards
Ravi - Ravi on May 16, 2023 at 7:43 am in reply to: BuddyPress Moderation Tools -The report button is duplicated in buddyboss groups #49532
Hello Roberto,
Sorry for the inconvenience. BuddyBoss also offers a moderation component to moderate site content. Please make sure it is disabled for Groups. Please check
Regards
Ravi