BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25086
    Brajesh Singh on in reply to: User Profile Questions #49355

    Hi Simon,
    Hope you are doping well.

    Can you please check my last reply and share more details.
    It would be nice to have it working for you asap.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25086
    Brajesh Singh on in reply to: [Resolved] BuddyBlog Groups #49348

    Hi Nik,
    Thank you for the reply.

    There is a better and easier way around if you are using an SEO plugin. Most of these plugin allow you to exclude post types from indexing.
    so, add the relevant post types to exclusion and things should be fine. If you are not using any seo plugin, there is not much to worry about.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25086

    Hi Ivan,
    Thank you for the link.
    I had a look and I don’t see uploaded cover for the user.
    can you please disable community builder and use Twenty Twenty-Three theme and let me know. I will check again.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25086

    Hi Cristi,
    Thank you.
    I am glad the JS was not our issue.
    I have looked through the responsive recent post and it does not seem to have any side effect on BuddyBlog listng.

    Can you please the post status for posts titled as “Auto Draft” in the dashboard, are they set to be published or something else?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25086

    Hi Jap,
    Welcome to BuddyDev.

    1. It seems to be a css conflict. Which theme/template pack are you using?

    2/3. The ‘x’ allows you to delete the content. If the media is not visible, probably the url you are adding does not provide photo/video embed type.

    4. Please see this to change php maximum upload size. This is a server level configuration. MediaPress can restrict below it but not above it.
    https://buddydev.com/docs/general/how-to-change-the-maximum-upload-file-size-for-php/

    5. You may use an offloading solution for WordPress to achieve it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25086
    Brajesh Singh on in reply to: [Resolved] BuddyBlog Groups #49343

    Hi Nik,
    If you are using a seo plugin, these post urls might get indexed but the content will not be visible for private group posts.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25086

    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: 25086
    Brajesh Singh on in reply to: [Resolved] BuddyPress and Google #49331

    Thank you.
    I am glad to assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25086
    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: 25086
    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