BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BuddyBlog not functioning correctly #49688

    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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Buddyblog pay per post expiration issue #49672

    Hello Tosin,

    Thank you for the acknowledgement. I will give it a try as you suggested and let you know.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: limit number pf photos in user profile #49649

    Hello,

    Thank you for the acknowledgement. But I am sorry, this is not doable with any of our plugins currently.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: limit number pf photos in user profile #49647

    Hello,

    Thank you for the question. Since you are using BuddyBoss, Please contact their support for assistance with it.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on 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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on 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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Buddyblog pay per post expiration issue #49582

    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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Roberto,

    It seems it is an issue with the BuddyBoss Platform. Look at the following:

    https://github.com/buddyboss/buddyboss-platform/blob/release/src/bp-groups/bp-groups-functions.php#L5133

    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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    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