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

    Hi John,
    Thank you for the question.

    There does not exist any plugin for this.

    What is a sub profile in your case? Is it the Profile field group?

    Please link to a screenshot showing it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi John,
    Sorry for the delay.

    Here is the code for hiding the update.

    
    add_filter( 'bp_activity_can_comment', function ( $can, $activity_type ) {
    
    	// already protected, return.
    	if ( ! $can || 'rtmedia_update' !== $activity_type ) {
    		return $can;
    	}
    
    	$logged_user_id   = get_current_user_id();
    	$activity_user_id = bp_get_activity_user_id();
    
    	// if not user's own activity, or not super admin
    	// and the current user is not friends with the activity user, disable comment.
    	if ( $logged_user_id != $activity_user_id &&
    	     ! is_super_admin() && function_exists( 'friends_check_friendship' ) &&
    	     ! friends_check_friendship( $logged_user_id, $activity_user_id )
    	) {
    		$can = false;
    	}
    
    	return $can;
    }, 20, 2 );
    
    

    About MediaPress:- We love when people use MediaPress but we do not recommend switching to it just due to one rating addon. I will recommend sticking with whatever plugin you are using if that works for most of the features. That will create less friction for your members.

    Regards
    Brajes

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Buddy Blog Pro #41217

    Hi Joseph,
    hope you are doing well.

    adding map field will take couple more days.

    We have a BuddyBlog Pro release coming tomorrow but I am not sure if we will be able to have it in tomorrow’s release. We will have this in next 3-4 days for sure.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Issues with BP Deactivate Account #41183

    Hi Khalid,

    Thank you for the patience.

    Please upgrade to 1.2.2 and the issue with be fixed. The issue was happening due to the way BuddyBoss understands access restricted url.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Users Choosing Member Types #41182

    Hi Lisa,
    Please upgrade to 2.1.7 and let me know if the theme works for you or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi Fabricio,
    Thank you for letting us know.

    Are you still facing the email issue or is that resolved too?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Problem with the feed of the activity of member #41180

    Hi Alison,
    Please contact them and let them know that BuddyPress is creating incorrect excerpt for the posts created using divi builder.

    Do they have any suggestions to trim the divi shortcode/tags from content?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi Stefan,
    Thank you.

    For all other data(friends/groups/notifications etc), the simple solution is to drop BuddyPress tables for the specific sub site in question. Then copy the bp_xyz tables?(which does not have a numeric suffix after bp) and rename them to bp_xx(where xx is your blog id, e.g 2, 3 tec).

    That will make all the original data available.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    If you change the member type slug, this can happen.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Please check your caching or selection of member types. I do not see any reason for it to stop working automatically.

    Regards
    Brajesh