Replies
- 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.
- Brajesh Singh on April 22, 2024 at 8:59 am in reply to: Linking Birthdate field with FluentForms user registration Date/Time field #52378
Hi Richard,
Thank you for the question.Our birthdate field is actually a BuddyBoss/BuddyPress “Date” field. If you are able to link a date field with Fluent Form, you can use the same for the birthdate field.
Regards
Brajesh - Brajesh Singh on April 21, 2024 at 11:56 am in reply to: [Resolved] Upload Media from Clipboard on Mediapress #52375
Thank you Amos.
- Brajesh Singh on April 21, 2024 at 11:39 am in reply to: [Resolved] BuddyCommerce – Add to account settings page not profile #52373
Hi,
Thank you for the kind words and the suggestions!
We are hopeful to do something on that line in future.Regards
Brajesh