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: 25363
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25363

    Hi Dandy,
    Thank yo.
    I am glad it is working.

  • Keymaster
    (BuddyDev Team)
    Posts: 25363
    Brajesh Singh on in reply to: [Resolved] Display last name in profile pages #4281

    Hi Javier,
    Thank you for the update. Yes, you are right about it. Though it is possible to write a script that does it for the older registrations, It does not seem to be readily available.

    Marking the thread as resolved. Please do post a topic if you need any help in future 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25363
    Brajesh Singh on in reply to: Buddyblog post grid layout #4280
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25363

    Hi Tiziano,
    Thank you.

    I am looking forward to your tests. Our team will certainly keep developing it 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25363
    Brajesh Singh on in reply to: Multisite Global terms #4278

    Hi Ro,
    Please give me today. I am thinking about some strategy.

  • Keymaster
    (BuddyDev Team)
    Posts: 25363
    Brajesh Singh on in reply to: Couple of questions #4277

    Hi Zabrina,
    Can you please tell me what do you mean by sharing media? MediaPress Uses WordPress attachment for storing media. So, everything that applies to attachment, applies to MediaPress.

    2. Yes, It is coming in August.

    Hope that helps.
    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25363

    Hi Eric,
    Welcome to BuddyDev forums.

    Please use this and let me know if it works for you or not?

    
    [activity-stream action='activity_update']
    

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25363
    Brajesh Singh on in reply to: Hello #4263

    Hi,
    Can you please upgrade to 1.0.5 and see if it works for you or not?
    https://buddydev.com/plugins/bp-force-profile-photo/

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25363
    Brajesh Singh on in reply to: [Resolved] BP Profile Visibility Manager #4262

    Hi Tom,
    Welcome to BuddyDev.

    Please put this code in your bp-custom.php or your theme’s functions.php

    
    
    function buddydev_disable_filtering_users() {
    	
    	if ( function_exists( 'bp_profile_visibility_loader' ) && current_user_can( 'manage_options' ) ) {
    		bp_profile_visibility_loader()->set_data( 'is_visible', true );//all users will be visible
    	}
    }
    add_action( 'bp_before_members_loop', 'buddydev_disable_filtering_users' );
    
    //do you want to disable visibility after the loop?
    function buddydev_reenable_filtering_users() {
    	
    	if ( function_exists( 'bp_profile_visibility_loader' ) && current_user_can( 'manage_options' ) ) {
    		bp_profile_visibility_loader()->set_data( 'is_visible', false );//all users will be visible according to their preference
    	}
    }
    add_action( 'bp_after_members_loop', 'buddydev_reenable_filtering_users' );
    
    

    It is the simplest way to enable/disable filtering.

    The current_user_can() function takes capability for checking. For the Capabilities, Please see https://codex.wordpress.org/Roles_and_Capabilities

    Please do let me know if it works for you or not?