Replies
- 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 - Brajesh Singh on April 5, 2021 at 8:39 am in reply to: Buddyblog can we require featured image and shortcode? #37463
Hi Karen,
Thank you for using BuddyBlog.1. No. This is not available with BddyBlog. Is available with the BuddyBlog Pro though.
2. No. We don’t have shortcodes yet.
Regards
Brajesh - Brajesh Singh on April 5, 2021 at 8:37 am in reply to: Xprofile Custom Field Types: Not showing on frontend #37462
Hi Mark,
I am sorry for the delayed reply.The field is working with BuddyBoss theme and platform. I just tested it.
Please make sure you have some tags available for the user to select and the user have selected tags. Only selected tags appear.
here is a screenshot
https://i.imgur.com/OxeLQp2.pngRegards
Brajesh - Brajesh Singh on April 5, 2021 at 8:30 am in reply to: [Resolved] BuddyPress Auto Friendship Pro feature suggestion #37461
Hi Tosin,
Thank you for the suggestion.We are moving it to “Auto Friendship Creator” plugin. The suggestions plugin may have rule to list suggestions but will not auto add users.
Regards
Brajesh