Replies
- Brajesh Singh on April 6, 2021 at 10:36 pm in reply to: [Resolved] BuddyPress Auto Friendship Pro feature suggestion #37498
Hi Tosin,
Thank you. That does make a lot of sense. - Brajesh Singh on April 6, 2021 at 10:35 pm in reply to: [Resolved] Member types pro and buddypress 8.0 #37497
Hi Tosin,
Thank you for the question.At the moment, the feature is not included in the BuddyPress core. we are waiting on the first beta to test it.
I am not seeing any issue currently but we will have more details when BuddyPress 8.0 beta is out.
Regards
Brajesh - Brajesh Singh on April 6, 2021 at 10:31 pm in reply to: [Resolved] PROFILE TAB PRO: Incorrect Content Appears in Tab #37496
Hi Dianne,
Thank you for the kind words.
I am glad I was able to assist.Regards
Brajesh - Brajesh Singh on April 6, 2021 at 10:30 pm in reply to: Profile User tab in the Buddyboss theme problem #37495
Hi Steffen,
I am sorry for the issue.The only other solution is to override at least 3 files(member-header.php, cover-image-header.php and profile.php ). All these 3 files have same code for hiding/showing the header.
Regards
Brajesh - Brajesh Singh on April 6, 2021 at 10:24 pm in reply to: BuddyPress Profile Visibility Manager #37494
Hi Anas,
Thank you for using the plugin.The suggestion depends on user’s(or default privacy).
Is the specific user visible in search/directory? If they are not, they will not be shown as part of message auto complete box.
Only a friend(irrespective of privacy) or a user whose profile is visible in directory/search will be visible in the suggestions list.
Please check the user’s state and let me know.
Regards
Brajesh - Brajesh Singh on April 6, 2021 at 10:20 pm in reply to: Should BuddyPress User Profile Tabs Creator Pro work with the new BuddyBoss App? #37493
Hi Paul,
Thank you for letting us know.Please let us know what the suggest to change and make it compatible. We will be glad to add that.
Regards
Brajesh - Brajesh Singh on April 5, 2021 at 4:44 pm in reply to: Error with bp-auto-activate-auto-login #37474
Hi Jonathan,
I have tested BuddyPress, “LearnPress” and LearnPress addon for BuddyPress.The registration is working perfectly for me.
Do you have any specific setting related to the registration? If yes, what is that? Please help me replicate it and I will assist you.
Regards
Brajesh - Brajesh Singh on April 5, 2021 at 4:37 pm in reply to: [Resolved] PROFILE TAB PRO: Incorrect Content Appears in Tab #37473
Hi Dianne,
Please check the site and the help tab now.I removed the “groups” as default sub tab in the “Activity” tab setting and it is working as expected.
Regards
Brajesh - Brajesh Singh on April 5, 2021 at 9:47 am in reply to: Groups Tab Pro conflict when restricting pages #37467
Hi,
Thank you for the patience.The “Groups” plugin enables content filtering On by default and hide contents for the post unless excluded(I am guessing the exclusion part).
Here is the code that you can put in bp-custom.php to disable this on the BuddyPress single group page
/** * Disable groups plugin content filtering. */ add_filter( 'groups_post_access_the_content_apply', function ( $apply ) { if ( function_exists( 'bp_is_group' ) && bp_is_group() ) { $apply = false; } return $apply; } );That will make it work.
Regards
Brajesh - Brajesh Singh on April 5, 2021 at 8:58 am in reply to: Profile User tab in the Buddyboss theme problem #37464
Hi Steffen,
Thank you for the patience.here is an example.
The should change this(from all the places they have used similar code)
<?php if ( ! bp_is_user_messages() && ! bp_is_user_settings() && ! bp_is_user_notifications()&& ! bp_is_user_profile_edit() && ! bp_is_user_change_avatar() && ! bp_is_user_change_cover_image() ) : ?>to
$show_profile_header = ! bp_is_user_messages() && ! bp_is_user_settings() && ! bp_is_user_notifications() && ! bp_is_user_profile_edit() && ! bp_is_user_change_avatar() && ! bp_is_user_change_cover_image() ; if ( apply_filters('buddyboss_theme_show_user_profile_header', $show_profile_header ) ) : ?>Even better, they can put part of this code in a function like buddyboss_theme_is_user_profile_header_visible()`
and use that at all the places they want to toggle the header.Now, we can control the header visibility via custom code easily.
Regards
Brajesh