Replies
- Brajesh Singh on April 28, 2024 at 12:22 pm in reply to: [Resolved] MediaPress not registering activity for new media upload in my BuddyBoss website #52409
Hi Prince,
I am sorry, MediaPress does not support BuddyBoss.
We recommend using the Media component that comes with BuddyBoss.Regards
Brajesh - Brajesh Singh on April 28, 2024 at 12:20 pm in reply to: Issue with additional Buddyboss profile fields #52408
Hi Bryon,
Welcome to BuddyDev.Please contact BuddyBoss support,
https://www.buddyboss.com/contact/They are in the best position to assist you.
Regards
Brajesh - Brajesh Singh on April 25, 2024 at 8:13 pm in reply to: Option to show profile photo and username at/in the image #52403
Hi Benny,
Thank you for the question/suggestion.The plugin does not support it. You can edit the template to achieve it. It’s a good suggestion and we will be happy to have something in our future version(after thinking about how we will deal with the existing sites).
Regards
Brajesh - Brajesh Singh on April 23, 2024 at 9:46 am in reply to: BP xprofile fields plugin – meta keys #52397
Hi Meline,
I am sorry but I am not aware of any way to get BuddyPress/BuddyBoss profile fields via acf.You will need to add the field name in the shortcode to make it fetch.
All the data is relative to user. First, you need to determine whose profile data you are fetching logged in user or displayed user or someone else.
For logged in/displayed, you can pass context=logged or context=displayed
Here is an example:-[bpsc-profile-data field="1" context="logged"]
Should display the name. You can access the field id/name from BuddyBoss->Profiles screen in the backend.
Regards
Brajesh - Brajesh Singh on April 23, 2024 at 5:03 am in reply to: [Resolved] Mediapress – Images published on activity feed not available #52391
Hi Jasmina,
Thank you for the reply.Please ensure that your wall gallery is marked public too. I believe, you haven’t updated that(from your profile->Gallery->Wall Gallery->Edit)
Let me know if you have already done that too?
Thank you
Brajesh - Brajesh Singh on April 23, 2024 at 5:00 am in reply to: Linking Birthdate field with FluentForms user registration Date/Time field #52390
You are welcome.
Please check with Fluent Forms to see if the support mapping of BuddyPress/BuddyBoss fields.
Regards
Brajesh - Brajesh Singh on April 23, 2024 at 4:57 am in reply to: [Resolved] How can i deactivate “Create album” at the media for normal user? #52389
Hi Benny,
Welcome to BuddyDev.I am sorry, the plugin does not have an option for it.
you will need to use the following snippet
// Limits MediaPress group gallery creation to site admin and group admin. add_filter( 'mpp_user_can_create_gallery', function ( $can_do, $component, $component_id ) { if ( 'groups' !== $component ) { return $can_do; } if ( ! is_super_admin() && ! groups_is_user_admin( bbp_get_current_user_id(), $component_id ) ) { $can_do = false; } return $can_do; }, 10, 3 );
If you are using any code snippet manager, please add it it them. Otherwise, Please put it in your theme’s functions.php.
Regards
Brajesh - Brajesh Singh on April 23, 2024 at 4:47 am in reply to: BP xprofile fields plugin – meta keys #52388
Hi Melanie,
Welcome to Buddydev support forums.1. BuddyBoss profile fields does not store data in user meta. They are stored in custom table. You may not use meta key with elemntor for this.
The solution is to use BuddyPress/BuddyBoss specific shortcode.
Here is an example plugin that adds the profile data shortcode for BuddyPress/BuddyBoss.
https://github.com/buddydev/bp-shortcodes
For usage, Please see this post:-
https://buddydev.com/support/forums/topic/xprofile-field-shortcode/#post-46106Regards
Brajesh - Brajesh Singh on April 23, 2024 at 4:40 am in reply to: Ban registration domain is banning domains I did not enter #52387
Hi Cheryl,
I am sorry for the experience.Is there a chance that you are using regular expression in the banned domains? or Is there any other restrictions plugin active?
Please share me a screenshot showing the list of banned domains and the email used for registration.
I will assist asap.
Thank you
Brajesh - Brajesh Singh on April 22, 2024 at 9:00 am in reply to: Is is possible to restrict profile types from seeing other profile type updates? #52379
You are welcome.