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: 25472

    Hi,
    Thank you.

    The privacy option on that page was shown as an example of custom field type and not the real visibility. Please allow me to update the plugins by 25th or before.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Daria,
    Thank you for posting.

    It is very easy to filter member directories or any member list using the member type. So, restricting the users to their member type will be easy.

    The problem will be filtering activity based on member type. There is no available API. It will need to be done by filtering on activity query conditions(still doable). If you have large number of users in each reason, the overhead may not be justified.

    Another approach I see is using BuddyPress on Multisite with Multi Network. In that case activity/groups/posts/media etc separation will happen out of the box.

    Restring the users to their reason will also be easy.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Leland,
    Thank you for posting.

    Do you under Shop->My Account->Settings? I am not sure BuddyPress supports 3rd level child.

    Also, You can add a link to any nav item to another nav item but they are not moved in actual sense. It is only dynamically linking.

    The nav works in 2 ways in BuddyPress:- 1. A visible link that point to some ur
    2. An attached callback that loads this screen

    Using Member Types pro, if you move an existing nav item to another, you are only changing the first part. The url do not change and neither the handler.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Herve,
    Thank you for reminding.

    I will give it another shot tomorrow and post back.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: Starting afresh with BuddyPress & Multisite #15223
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: Starting afresh with BuddyPress & Multisite #15222
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] Ajax Registration #15219
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] .Mov Format Video not playing #15218

    Hi Darren,
    My apologies for the delayed reply.

    It seems the mov file videos are not h.264 encoded. Currently, the player we user(MediaElement js player that comes bundled with WordPress), only support h.264 encoding.

    We will need some kind of transcoder to convert the video the above encoding. I am working on a transcoder micro service(It was supposed to be available by now). It will be available in next 3-4 weeks now.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi trolinof,
    Do you want to allow the private status from the BuddyBlog plugin? If that is the case, we might be able to assist you.

    Ps:- Do you want to give the users the Public|Private visibility option? We might have to update the plugin for this but it is achievable.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: restricting member directory access #15216

    Hi David,
    Welcome to BuddyDev.

    You may use the following code to redirect non logged users

    
    add_action( 'bp_template_redirect', function () {
    
    	if ( ! is_user_logged_in() && bp_is_members_directory() ) {
    		bp_core_redirect( site_url( '/' ) );
    	}
    } );
    
    

    If you are using the Member Types feature of BuddyPress and want to do it for the directory of a specific member type, you may use ‘bp_get_current_member_type()’ to check for that.

    Hope that helps.

    Regards
    Brajesh