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: 25488
    Brajesh Singh on in reply to: Buddyblog limit submissions addon suggestion #41238
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25488

    Hi Niculae,
    I am sorry for the inconvenience.

    1. For the featured Image issue, Please visit Dashboard->BuddyBlog->Settings->[Your post type] and make your that you have “Editing” enabled for all members. That will fix it. It will not be needed in future versions(Already fixed in the next release coming tomorrow but it is required for current version due to a permission issue).

    2. The code base for BuddyBolg and BuddyBlog Pro are different. The above code will not work for BuddyBlog Pro. I will share the snippet a bit late today.

    3. Double publishing and message:- Can you please tell me which theme are you using? Are you using it with BuddyPress or BuddyBoss?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: BuddyPress Custom Xprofile Fields Crashed site #41230
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: BuddyPress Custom Xprofile Fields Crashed site #41229

    Hi Craig,
    I am sorry for the issue.

    is there any chance you are using Youzer? We have only seen conflict with Youzer/Youzify profile completion plugin.

    The plugin will not throw error even if BuddyPress disabled. If possible, Please share the error log.

    I am sharing a contactable email address in my next reply but we prefer support via forums and email support is neither offered(except in exceptional circumstances) or is limited in nature.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488

    Hi,
    Thank you for using the plugin.

    Please allow us to check with with the BuddyPress follow plugin and get back to you in next 24 housr.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: Buddyblog limit submissions addon suggestion #41225

    Hi Tosin,
    Thank you for the suggestion.

    Even though an addon for limiting submission will be good, I am not finding the above addon much helpful. I will explain with each of their limits.

    1.Limit who can submit your forms. :- We already have the ability to limit by roles.

    2.Limit what can be submitted. :- Not much relevant as the plugin is for creating content not a form submission. If we extend our validations features, that will take care of this.

    3. Limit where your forms can be submitted. – Not relevant as the form has predefined locations currently.

    4. Limit when your forms can be submitted.:- It does not seem a highly needed feature. It can be an option in the future but I am not seeing a strong reason to have it. The reason is you can globally turn off creation anytime.

    Overall, I find that BuddyBlog Pro is aimed at a different use case than the contact form submission plugins and are used in different context. We should have restrictions(how many entries are allowed, who can publish, who can edit after publish, how many days after publishing an entry is allowed to be edited, set limit for auto deletion/drafting of posts after n days and so).

    I will love to hear your ideas in BuddyBlog context.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488

    Hi Cromacio,
    Thank you for the assistance here.

    Regards
    Brajesh

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

    Hi Khalid,
    Thank you.

    I sincerely appreciate your patience and your assistance in helping us understand the issue. I am glad I was able to assist with getting it resolved.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488

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

    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