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

    Hi Ivan,
    Welcome to BuddyDev support forums.

    Please share the version for community builder theme.

    Also, if feasible, Please link me to a profile page where the cover has been uploaded.
    My guess is, it is a css conflict somewhere that is hiding the cover.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25253
    Brajesh Singh on in reply to: [Resolved] BuddyPress and Google #49331

    Thank you.
    I am glad to assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25253
    Brajesh Singh on in reply to: How to Update all Existing Profiles’ Visibility #49330

    Hi,
    I am sorry, Ravi had asked me to reply on this but I missed.

    I am assuming table names are wp_users and wp_usermeta, Please replace them with your table names.

    1. Delete all the current preference set by any user. This is important step.

    
    DELETE FROM wp_usermeta where meta_key IN ( 'bp_exclude_in_dir', 'bp_exclude_in_search', 'bp_hide_last_active', 'bp_profile_visibility', 'bp_allow_friendship_request', 'bp_friends_list_visibility', 'bp_send_messages_visibility', 'bp_allow_follow_request', 'bp_profile_group_tab_visibility','bp_profile_profile_tab_visibility', 'bp_profile_activity_tab_visibility' );
    
    

    2. For each of the meta key we want to have a default value set, we will need to run something like this
    a. For directory exclusion:-

    
    INSERT INTO wp_usermeta ( user_id, meta_key, meta_value )  SELECT ID, 'bp_exclude_in_dir', 'yes' FROM wp_users
    
    

    Search exclusion:-

    
    INSERT INTO wp_usermeta ( user_id, meta_key, meta_value )  SELECT ID, 'bp_exclude_in_search', 'yes' FROM wp_users
    
    

    Hide last active

    
    INSERT INTO wp_usermeta ( user_id, meta_key, meta_value )  SELECT ID, 'bp_hide_last_active', 'yes' FROM wp_users
    
    

    Profile privacy:-

    
    INSERT INTO wp_usermeta ( user_id, meta_key, meta_value )  SELECT ID, 'bp_profile_visibility', 'friends' FROM wp_users
    
    

    Friendship Request:-

    
    INSERT INTO wp_usermeta ( user_id, meta_key, meta_value )  SELECT ID, 'bp_allow_friendship_request', 'yes' FROM wp_users
    
    

    Friends tab visibility:-

    
    INSERT INTO wp_usermeta ( user_id, meta_key, meta_value )  SELECT ID, 'bp_friends_list_visibility', 'friends' FROM wp_users
    
    

    Message Visibility:-

    
    INSERT INTO wp_usermeta ( user_id, meta_key, meta_value )  SELECT ID, 'bp_send_messages_visibility', 'friends' FROM wp_users
    

    Follow request:-

    
    INSERT INTO wp_usermeta ( user_id, meta_key, meta_value )  SELECT ID, 'bp_allow_follow_request', 'yes' FROM wp_users
    
    

    Group Tab visibility:-

    
    INSERT INTO wp_usermeta ( user_id, meta_key, meta_value )  SELECT ID, 'bp_profile_group_tab_visibility', 'friends' FROM wp_users
    

    Profile Tab visibility:-

    
    INSERT INTO wp_usermeta ( user_id, meta_key, meta_value )  SELECT ID, 'bp_profile_profile_tab_visibility', 'friends' FROM wp_users
    

    Activity tab visibility:-

    
    INSERT INTO wp_usermeta ( user_id, meta_key, meta_value )  SELECT ID, 'bp_profile_activity_tab_visibility', 'friends' FROM wp_users
    

    Please feel free to customize the default values that suits your needs.

    You will need to run all of these via phpMyAdmin or similar mysql admin tool.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25253
    Brajesh Singh on in reply to: Group tab creator problem #49329

    Hi,
    Thank you for the question.
    We do not control the links generated by shortcode.
    In your case, The links are generated by gravity view and they control it.

    Please contact their support and ask if the shortcode will work outside of the normal post/page screens.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25253
    Brajesh Singh on in reply to: [Resolved] BuddyPress and Google #49326

    Hi Jake,
    Welcome to BuddyDev.

    The content from private groups/forums are not accessible and indexable by google.
    So, you do not need to do anything about it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25253

    Hi Cristi,
    Thank you.
    There is something else causing it.
    The auto drafts should never be visible in the front interface.

    Have you made any recent changes?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25253

    Hi Cristi,
    Thank you for the question.

    1.Auto Draft:- This is expected behaviour. We create an auto draft every time you visit “Create” page. The auto draft is used to write the post. we need it as it allows you to attach media to post create screen. Otherwise, you will not be able to attach media on create screen and only on edit screen.
    Also, default WordPress setup follows the same way when you visit the dashboard create post screen.

    You ma setup a db cleaner that deletes the auto drafts after 1 or 2 days.

    2. I am not sure about that language file. My assumption is WordPress is trying to load localization file for TinyMCE. We will check and assist you with it in next 24 hours.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25253
    Brajesh Singh on in reply to: Bp Poke not show up #49318

    Hi Sylvia,welcome to BuddyDev.
    It seems you are using Youzify.

    Youzify is not compatible with our plugins. It breaks the expected markup and makes our plugin non functional.
    I am sorry, we don’t have a solution for this.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25253

    Hi Franz,
    Thank you for confirming.

    The issue with first post is it seems It is a post created using Elementor. The the_excerpt() is not showing all the content as elementor trims it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25253

    Hi Franz,
    Thank you for your patience.
    The pagination was a bug in BuddyBlog Pro. It happens when the sub tab needs pagination but the tab action is different sub tab slug.
    I have fixed it on your site. I will release an update for our members sometimes this week.

    Please check the site and let me know if pagination is fixed or not?

    Thank you
    Brajesh