Replies
- Brajesh Singh on October 25, 2021 at 12:52 pm in reply to: Buddyblog limit submissions addon suggestion #41238This reply has been marked as private.
- Brajesh Singh on October 25, 2021 at 12:50 pm in reply to: [Resolved] Doubled Published Article and Custom Code not working #41237
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 - Brajesh Singh on October 25, 2021 at 11:05 am in reply to: BuddyPress Custom Xprofile Fields Crashed site #41230This reply has been marked as private.
- Brajesh Singh on October 25, 2021 at 11:03 am 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 - Brajesh Singh on October 25, 2021 at 10:30 am in reply to: [Resolved] [activity-stream scope=”following” for=”logged”] do not work. #41227
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 - Brajesh Singh on October 25, 2021 at 10:22 am 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 - Brajesh Singh on October 25, 2021 at 10:14 am in reply to: [Resolved] Better Registration Guide still accurate? #41224
Hi Cromacio,
Thank you for the assistance here.Regards
Brajesh - Brajesh Singh on October 25, 2021 at 10:11 am 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 - Brajesh Singh on October 25, 2021 at 10:10 am in reply to: Hide the profile tabs for the users who did not setup their profile #41220
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 - Brajesh Singh on October 25, 2021 at 10:06 am in reply to: disable the rtmedia comment action in the post until the users are become friend #41219
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