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: 25494
    Brajesh Singh on in reply to: Using custom taxonomy with Mediapress galleries #26596

    Hi,
    Thank you for the patience.
    We tested it. The issue happens with BP Nouveau template pack. It works with the Bp Legacy template pack.

    The problem is in Nouveau our fgallery directory filter are not working. We will be pushing a release next week to resolve the directory compatibility with BuddyPress Nouveau. The changes are need in MediaPress.

    I will post back after the update.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Friendship Restrictions re-imagine #26595

    Hi,
    here is the link
    https://wordpress.org/plugins/invite-anyone/

    if your users are already catgorized by roles, You should not have any issue using this plugin while trhe “role” is selected as criteria.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: BuddyPress Moderation Tools support #26594

    Also, I forgot to mention, for users content the buttons will appear but when someone will try to report, they will get an error that it can not be reported.

    The reason behind this decision was site performance.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: BuddyPress Moderation Tools support #26593

    Hi Tosin,
    I am sorry for the delay.

    Here is the code

    
    
    // BuddyPress Moderation Tools: White list specific user's content from moderation.
    add_filter( 'bpmts_is_user_whitelisted', function ( $is, $user_id ) {
    	$white_listed_users = array( 284, 37845, 4578, 2357 );
    	if ( in_array( $user_id, $white_listed_users, true ) ) {
    		$is = true;
    	}
    
    	return $is;
    }, 10, 2 );
    
    // BuddyPress Moderation Tools: Do not allow white listed user's profile to be reported.
    add_filter( 'bpmts_is_item_reportable', function ( $is, $item_type, $item_id ) {
    	if ( 'user' !== $item_type ) {
    		return $is;
    	}
    
    	$white_listed_users = array( 284, 37845, 4578, 2357 );
    	if ( in_array( $item_id, $white_listed_users, true ) ) {
    		$is = true;
    	}
    
    	return $is;
    }, 10, 3 );
    
    

    Please put it in your bp-custom.php and it will work.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: [Resolved] Moderation Tools group restriction #26591

    You are welcome 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: BuddyPress Moderation Tools #26590
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Plugin development question #26589

    Hi Tosin,
    Thank you for being part of BuddyDev.

    We do have a restrictions plugin in development which has a lot more functionality than the above plugin.

    At the moment, we have paused its development to focus on our upcomign theme(s). We are hoping to resume it after mid December and we should have it soon after.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: [Resolved] Confused on finding settings… #26588

    Thank you.

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Hide username in comments for all but admin #26587

    Hi,
    You will need to use css to do it. We are unable to develop the above plugin further.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: [Resolved] MP Flexible Storage Limit Doesn't work #26586

    Hi,
    Welcome to BuddyDev.

    Is there any chance that you tested the limit while logged in as super admin or site admin?

    Did you set a limit by role or applied to that specific user? Please let me know and I will assist.

    Thank you
    Brajesh