BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Profile Visibility Manager: Visual tag for Usernames #2869

    Hi Michael,

    Thank you for posting. Please use the following code in bp-custom.php file

    
    function bp_visibility_add_member_visibility_css_class( $classes ) {
    
    	if ( ! function_exists( 'bp_profile_visibility_get_settings' ) ) {
    		return $classes;
    	}
    
    	$visibility = bp_profile_visibility_get_settings( bp_get_member_user_id(), 'bp_profile_visibility' );
    	$classes[]  = 'visibility-' . $visibility;
    	return $classes;
    
    }
    add_filter('bp_get_member_class','bp_visibility_add_member_visibility_css_class');
    
    

    It will add a new class based on their profile accessibility and you can then just style the list as you may please.

    Thank You
    Ravi

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

    Hi Ada

    Thank You for posting and confirming that it was not a issue. I am glad that issue is fixed.

    Thank You
    Ravi

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

    Hi Gregorio,

    Thank you for asking. This is enabled by default. The only requirement is user must have a gallery created. At the moment admin can not create gallery for other users.

    Please do let me know if you have any issues.

    Thank you
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BuddyPress Site Wide Activity Widget Issue #2716

    Hi Ben,

    Thank you posting. It seems like a bug. We are looking at it and will have a fix today.

    Thank you
    Ravi