Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25373

    Hi Tosin,
    Thank you. That does make a lot of sense.

  • Keymaster
    (BuddyDev Team)
    Posts: 25373
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25373

    Hi Dianne,
    Thank you for the kind words.
    I am glad I was able to assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25373
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25373
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25373

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25373
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25373

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25373
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25373
    Brajesh Singh on 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