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: 25490
    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: 25490
    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: 25490

    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: 25490
    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: 25490

    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: 25490
    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: 25490
    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    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.png

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    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