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: 25400
  • Keymaster
    (BuddyDev Team)
    Posts: 25400
    Brajesh Singh on in reply to: [Resolved] Default Landing Tab #16542

    Hi Sujee,
    Please allow me to look into it today.

    Is there any difference between BuddyPress versions?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25400
    Brajesh Singh on in reply to: How to send a message to all users #16539

    Hi Daniel,
    I too liked the UI of the Better Messages plugin. It has nice UI.

    Still, if the site gets moderate traffic, the number of queries it does will be problematic.

    If the only thing you need is multiline text area, most probably , It is the theme which is doing it.

    BuddyPress uses multiline textarea by default for new message/replies.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25400
    Brajesh Singh on in reply to: Lightbox not loading #16537

    Hi Oscar,
    That makes sense.

    I will be adding a better sanitization for file name in the future version. That can resolve it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25400

    Thank you for confirming. I will be adding a fix for the case where ‘members’ is disabled.

    For now, Please do keep the code above.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25400

    Hi Sam,
    I have looked at the souncloud Oembed APi

    https://developers.soundcloud.com/docs/oembed

    It seems the only way to detect would be to use the provider name as the returned type is “rich” which could be a link too.

    I will be providing a separate addon for this instead of adding to the core.

    The reason is we will be using provider name for marking media as audio type(which will be a non standard way).

    I will be putting the addon in next 7-15 days.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25400

    Hi Tyler,
    It works fine for me.

    Please see
    https://youtu.be/ApumkoyVSbs

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25400

    Hi Daniel,
    1. Please delete BP Deactivate Account plugin and download fresh copy from the site and upload it.

    The plugin caused issue as it contains the old style include for our settings framework(with an older version of the settings framework).

    We have changed the way included the settings framework to avoid it happening again in future. In future, only the latest version will be loaded.

    2. Yes, They are compatible. MediaPress Directory won’t work properly with the BP Nouveau though. I am working on a solution for it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25400
    Brajesh Singh on in reply to: Hidden Members and Directory Profiles #16530

    Thank you.

    Please upgrade to 1.6.0
    https://buddydev.com/plugins/bp-profile-visibility-manager/

    It fixes the pagination issue.

    You can override the settings template now.

    Please copy

    
    wp-content/plugins/bp-profile-visibility-manager/templates/bp-profile-visibility-manager/privacy-settings.php
    

    to

    
    Yourtheme/bp-profile-visibility-manager/privacy-settings.php
    
    

    You can override it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25400

    Hi George,
    The problem is happening as the uploader is reporting component as ‘members’ which is disable in the gallery settings.

    It seems to me that the mpp_get_current_component() has a bug.

    For testing purpose, you cam put the following line in bp-custom.php

    
    add_filter( 'mpp_get_current_component', function ( $component ) {
    	if ( 'members' == $component && ! mpp_is_active_component( $component ) ) {
    		$component = 'sitewide';
    	}
    
    	return $component;
    } );
    
    

    Regards
    Brajesh