Replies
- 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 - Brajesh Singh on April 27, 2023 at 9:44 am in reply to: [Resolved] BuddyBlog Pro multiple empthy article Auto Draft #49319
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 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- Brajesh Singh on April 26, 2023 at 9:15 pm in reply to: posts are not shown in post list (e.g. published) #49316
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 - Brajesh Singh on April 25, 2023 at 9:54 pm in reply to: posts are not shown in post list (e.g. published) #49308
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