Replies
Hello Jose,
Thank you for the acknowledgement. As per my understanding by group tags are you referring to the Group Types? Please refer to the following screenshot:
https://tinyurl.com/29eo8l42If yes, You can manage them from All Groups or edit the group screen or share some screenshots so that I can help.
Regards
Ravi- Ravi on April 21, 2023 at 10:22 am in reply to: How to Update all Existing Profiles’ Visibility #49286
Hello
Welcome to the BuddyDev Forums. Yes, it can be doable with some lines of code and we will provide you. Please wait till Monday we will get back to you.
Thank You
Ravi Hello Jose,
Welcome to the BuddyDev Forum. But, Sorry I am not able to understand your requirement fully. Please help me with this so that I can help.
Regards
RaviHello,
Thank you for the acknowledgement. Yes, I will share a video of the issue soon. So that You can fix this on your main site.
Regards
RaviHello Tosin,
Thank you for posting here. The BuddyPress plugin handles internal and email notifications separately. So, You can deactivate the notification module.
For e.q.
// Record internal notifications add_action( 'friends_friendship_requested', 'bp_friends_friendship_requested_notification', 10, 3 ); // Sends email notifications add_action( 'friends_friendship_requested', 'friends_notification_new_request', 10, 3 );
Please check and let me know what type of notifications you are dealing with.
Regards
Ravi- This reply has been marked as private.
Hello,
Thank you for posting. Please try the following code in your “bp-custom.php” file.
// modify BuddyPress avatar class with member type add_filter( 'bp_core_avatar_class', function ( $classes, $item_id, $object ) { if ( 'user' !== $object ) { return $classes; } $member_type = bp_get_member_type( $item_id ); if ( $member_type ) { $classes .= ' member-type-' . $member_type; } return $classes; }, 10, 3 );
It will add a member-type specific class with an avatar then you can apply CSS rules to it.
Note: Please refer to the following URL for more info on the bp-custom file
https://buddydev.com/docs/buddypress-guides/what-is-bp-custom-php/Regards
RaviHello Alexander,
I’m sorry to hear that you have submitted requests through our plugin customization form multiple times and have not received any acknowledgement. Soon, we will contact you about your customization request.
Regards
Ravi- This reply was modified 1 year, 9 months ago by Ravi.
- Ravi on April 17, 2023 at 2:48 pm in reply to: [Resolved] BuddyPress User Profile Tabs Creator Pro – access errors #49244
Hello Iain,
Sorry for the inconvenience. Can you please share the screenshots of your tab configuration so I can check?
Regards
Ravi - Ravi on April 14, 2023 at 3:52 am in reply to: [Resolved] Change Buddypress headers on register page #49218
Hello Lain,
Thank you for sharing your feedback. it’s good to know that you have a good learning exp.
Regards
Ravi