Replies
- 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_usersSearch exclusion:-
INSERT INTO wp_usermeta ( user_id, meta_key, meta_value ) SELECT ID, 'bp_exclude_in_search', 'yes' FROM wp_usersHide last active
INSERT INTO wp_usermeta ( user_id, meta_key, meta_value ) SELECT ID, 'bp_hide_last_active', 'yes' FROM wp_usersProfile privacy:-
INSERT INTO wp_usermeta ( user_id, meta_key, meta_value ) SELECT ID, 'bp_profile_visibility', 'friends' FROM wp_usersFriendship Request:-
INSERT INTO wp_usermeta ( user_id, meta_key, meta_value ) SELECT ID, 'bp_allow_friendship_request', 'yes' FROM wp_usersFriends tab visibility:-
INSERT INTO wp_usermeta ( user_id, meta_key, meta_value ) SELECT ID, 'bp_friends_list_visibility', 'friends' FROM wp_usersMessage Visibility:-
INSERT INTO wp_usermeta ( user_id, meta_key, meta_value ) SELECT ID, 'bp_send_messages_visibility', 'friends' FROM wp_usersFollow request:-
INSERT INTO wp_usermeta ( user_id, meta_key, meta_value ) SELECT ID, 'bp_allow_follow_request', 'yes' FROM wp_usersGroup Tab visibility:-
INSERT INTO wp_usermeta ( user_id, meta_key, meta_value ) SELECT ID, 'bp_profile_group_tab_visibility', 'friends' FROM wp_usersProfile Tab visibility:-
INSERT INTO wp_usermeta ( user_id, meta_key, meta_value ) SELECT ID, 'bp_profile_profile_tab_visibility', 'friends' FROM wp_usersActivity tab visibility:-
INSERT INTO wp_usermeta ( user_id, meta_key, meta_value ) SELECT ID, 'bp_profile_activity_tab_visibility', 'friends' FROM wp_usersPlease 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
BrajeshHi 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- Brajesh Singh on April 27, 2023 at 3:00 pm in reply to: [Resolved] BuddyBlog Pro multiple empthy article Auto Draft #49323
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