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: 25454
    Brajesh Singh on in reply to: Buddyblog post grid layout #4280
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25454

    Hi Tiziano,
    Thank you.

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

  • Keymaster
    (BuddyDev Team)
    Posts: 25454
    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: 25454
    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: 25454

    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: 25454
    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: 25454
    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?

  • Keymaster
    (BuddyDev Team)
    Posts: 25454
    Brajesh Singh on in reply to: Hide Comments – Site Wide Activity Widget #4261

    Hi Jason,
    No problem. Please do let me know if you need help with the display in your theme. I just need to know where you want to disable it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25454
    Brajesh Singh on in reply to: [Resolved] Activity as Wire PHP error #4255

    Hi Lee,
    seems like a bug. Updating in an hour.

  • Keymaster
    (BuddyDev Team)
    Posts: 25454
    Brajesh Singh on in reply to: video upload and view internet explore #4254

    Hi Christian,
    There can be many reasons. I am sorry but I am on linux and may not be of much help right now.

    Can you please check this
    http://stackoverflow.com/questions/6944679/html5-mp4-video-does-not-play-in-ie9

    Does any of the answer applies to your case?