Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25373

    Hi Tosin,
    Thank you for confirming.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25373

    Hi Anders,
    Please make sure you have friends component enabled. This is available out of the box by BuddyPress.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25373

    Thank you.

    1. Please upgrade to 1.0.5, It will make sure the auto follow works.

    2. Please add the following code to bp-custom.php to avoid infinite loop

    
    add_action( 'bp_force_profile_completion_skip_check', function ( $skip ) {
    
    	if ( is_page( 36115 ) ) {
    		$skip = true;
    	}
    
    	return $skip;
    }, 100 );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25373

    Hi Tosin,
    in order to assist you, I need to know what is “welcome” is it a page or post? Even better, can you please provide me its id. That will help me assist you with redirection issue.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25373

    Hi Ian,
    Thank you.

    Please put this code in your child theme’s functions.php or in wp-content/plugins/bp-custom.php

    
    
    /**
     * Reset flag for group members list.
     */
    function bp_profile_visibility_custom_reset_conditions_for_group() {
    
    	if ( function_exists( 'bp_profile_visibility_loader' ) ) {
    		bp_profile_visibility_loader()->set_data( 'is_visible', false );
    	}
    
    }
    
    add_action( 'bp_before_group_body', 'bp_profile_visibility_custom_reset_conditions_for_group', 100 );
    add_action( 'bp_before_group_membership_requests_admin', 'bp_profile_visibility_custom_reset_conditions_for_group', 100 );
    
    /* for nouveau, we need to use the filter instead*/
    add_filter( 'bp_after_group_has_members_parse_args', function ( $args ) {
    
    	if ( empty( $args['group_id'] ) || ! function_exists( 'bp_profile_visibility_loader' ) ) {
    		return $args;
    	}
    
    	bp_profile_visibility_loader()->set_data( 'is_visible', false );
    
    	return $args;
    }, 100 );
    
    

    That will do it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25373
    Brajesh Singh on in reply to: BuddyPress Featured Members Suggestion #38445

    Hi Tiffany,
    Thank you for the suggestion.

    1. Do you want to randomize the list? or do you want to control who appears first?
    2. We do have the ability to select by member type currently. We will be adding the role option in our future update.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25373
    Brajesh Singh on in reply to: Does suggested friends rotate suggestions? #38444

    Hi,
    The friends list will change when you have a new user who matches the criteria. We cache a specific suggestion rule for a user for 1 hour, so the list will update after that.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25373

    Hi Matheo,
    Thank you.

    Please share your other BuddyDev username or email and I can look for it. Once confirmed, I will be looking into the shortcode to see if they have some option and how to assist you. Before spending time with 3rd party code, I need to confirm the order.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25373

    Hi Ian,
    Thank you for using the plugin.

    At the moment, this is by design for non public groups. For public groups, they should be hidden based on their preference.

    Do you want to enforce it for non public groups too? I can supply a line of code for the same. Please let me know.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25373
    Brajesh Singh on in reply to: [Resolved] My Gallery Mystery #38440

    Hi Russsel,

    Thank you for letting us know. I am glad you have resolved it.

    Regards
    Brajesh