Replies
- 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 - Brajesh Singh on April 21, 2024 at 11:37 am in reply to: [Resolved] [ load more ] button –change to – next page- #52372
You are welcome.
- Brajesh Singh on April 21, 2024 at 11:37 am in reply to: [Resolved] BuddyPress User Profile Visibility Manager plus more Tabs #52371
Hi Eric,
We are not adding css. We are using the actual core functions for removing nav item.The problem is BuddyPress/BuddyBoss does not have any context about the nav item(where it is added for loggged or viewed). That’s why it gets removed from the visitors account dropdown nav too if it is not present on the user being viewed.
There are multiple solutions but the core platform(BP/BB) needs to provide us a way to achieve it. We won’t be using css as that will not apply the real removal of tab(and will be a security issue).
Regards
Brajesh