Replies
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
BrajeshHi 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- Brajesh Singh on May 1, 2023 at 9:06 am in reply to: [Resolved] User Profile Cover Image does not appearing after uploading #49346
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 - Brajesh Singh on May 1, 2023 at 9:04 am in reply to: [Resolved] BuddyBlog Pro multiple empthy article Auto Draft #49345
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 - Brajesh Singh on May 1, 2023 at 8:56 am in reply to: a few questions about mediapress and buddypress #49344
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 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- Brajesh Singh on April 28, 2023 at 4:19 pm in reply to: [Resolved] User Profile Cover Image does not appearing after uploading #49335
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 Thank you.
I am glad to assist.Regards
Brajesh- Brajesh Singh on April 27, 2023 at 11:37 pm 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 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