Search Results for 'buddypress'
-
Search Results
-
Just installed Buddy Press and in the menu section there is NO log in and out and no menus at all for Buddy Press.
Brand new wp installatio. no other plugs. Tried reinstallation. still no BP menu options.
Is there anyway to switch themes on Buddy press from front end, I used theme switcha plugin but after switching the activity posts disappeared.
Your Help Is Appreciated
Good Day, hope you are doing well,
Query Monitor has detected a Database error – Deactivating Buddypress removes the error, deleting and reinstalling Buddypress does not solve / or create the table.
How do I fix this?
running latest php version / latest version of wordpress.
SELECT DISTINCT i.item_id FROM wpni_bp_invitations i WHERE user_id IN (1) AND class IN ('bp_groups_invitation_manager') AND type = 'invite' AND invite_sent = 1 AND accepted = 0 Unknown Unknown Table 'training_cpd.wpni_bp_invitations' doesn't exist qmdbHello,
I recently installed BuddyPress on My Website MyTechTalky
Whenever I click on the “Remember Me” option at the login page, It works fine at first but as I visit the site again, it prompts me to login again :/
How to solve this issue.
Hi there,
for our online learning plattform we use learndash and wisdmlabs instructor role integrated with buddypress. We want to display the instructors profile like it is shown in the picture attached. Wisdmlabs says they dont do anything to show the courses the instructor role is creating. In our case the buddypress instructor profile only shows the enrolled courses. Is there any setting we dont think of? Thank you so much for your help, kind regards Priska
https://dailypioneer.rocks/wp-content/uploads/2020/07/download-3.png
Hi,
I’m using Buddypress together with BBpress. I’ve an issue and I’m hoping someone can help me with it.
When I (or someone else) create a new Buddypress-group on my website, I always choose to make a new group-forum. These forums have no ‘sub/child-forums’ by default. If you want there to be ‘sub/child-forums’ you should make them all by hand. I’ve around 60 groups (and counting), so you understand it’s a LOT of work if you want all the group-forums to have the same (same names, different private forums) sub-forums. Plus, I want my moderators to have the possibility to create groups (with a standard forum) and I can’t be there all the time to immidiatly make the sub-forums (including the right subtext and forum-image).
So, is there an option to make some ‘default sub forums’ (with image and subtext) that ALWAYS automatically ‘ll be created when you make a new group with forum? So for example: the default forums are ‘pregnancy’, ‘birthdays’ and ‘animals’. I make a new group called ‘Group 1’ and I choose ‘Yes, I want to create a forum for this group’. Then I open the brand new group-forum, and hooray! It has 3 brandnew subforums: ‘pregnancy’, ‘birthdays’ and ‘animals’. Only viewable for the group-members.
After that, I create a second group, called ‘Group 2’ and I choose ‘Yes, I want to create a forum for this group’. Then I open the brand new group-forum, and hooray again! It had 3 brandnew subforums (so, not the same forums you see in the group 1 forum), only viewable for group 2-members.
Can someone help me with this? 🙂
Hi, I am a buddypress starter and have version 6.1 installed, and I am facing the problem of ajax front end not loading content for members, groups, activity listings pages.
Once a member is logged-in everything works, but not for logged-out users.
I also get a ‘page not found’ notice for members, groups and activity pages, although they actually load but miss ajax content as I mentioned.I have made some readings of old similar issues, but I could not get a solution. Any help appreciated.
I already tried changing theme and deactivating plugins, but no success.My website: diff-coworking.es
Thanks!
I have this site: https://prodicallearning.com/
When a user registers this site he gets an activation email with activation URL and key.
But when the user enters the key it shows Error: “COULD NOT CREATE USER”.
And when I try to register again with the same email it shows “Email Already exists”.
When I try to login by the same credentials it shows ” There is a problem with the username and password”.
When I again visit the activation page it shows user already activated. But the users are not listed anywhere.
Current WordPress version: 5.4.2
Buddypress version: 2.6.5
Theme using : WPLMS by Mr.VibeI don’t know what is happening with the site. I am really stuck at this. A quick response will be appreciated.
Have a good day.Hey Guys,
Wordpress version: 5.4.2
Buddypress Version: 6.1.0(Themes and plugins are all up to date. All the buddy press features are working fine except the below two issue)
Yes I face the same issue with twenty, twenty themes.
Website URL: gooalgenie.comIssue
I am Facing the issue with Cover Image and Profile Pic looking Blur
Solution Tried did not affect:
Tried following Code for CSS:
#buddypress #item-header-cover-image #item-header-avatar img.avatar {
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;
}
#buddypress #header-cover-image {
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;
}Even tried each Image rendering values but no luck.
image-rendering: auto;
image-rendering: crisp-edges;
image-rendering: pixelated;/* Global values */
image-rendering: inherit;
image-rendering: initial;
image-rendering: unset;Topic: Nav and Sub Nav Ajax
WordPress: 5.4.2
BuddyPress: Version 6.1.0
Theme: Buddyapp
https://ecodominicana.comHello, I’m having a small issue, and can’t figure out how to fix it. Already read a lot of threads and documentation, but It seems I’m missing something.
Yesterday this error appeared:
PHP Deprecated: bp_before_xprofile_cover_image_settings_parse_args is deprecated since version 6.0.0! Use bp_before_members_cover_image_settings_parse_args instead. in /var/www/wptbox/wp-includes/functions.php on line 5088And it appears only on profile pages, like this one:
https://ecodominicana.com/members/ecodominicana/profileSo I created a buddypress.css in my child theme’s CSS folder: wp-content\themes\buddyapp-child\buddypress\css
And added this code:
$theme_handle = 'bp-parent-css'; $settings['theme_handle'] = $theme_handle; /** * Then you'll probably also need to use your own callback function * @see the previous snippet */ $settings['callback'] = 'bp_legacy_theme_cover_image'; return $settings; } add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 ); add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );Here is the the code in main functions.php
function kleo_load_files_plugin_compat() { //enqueue child theme style only if activated if ( is_child_theme() ) { if ( is_rtl() ) { wp_enqueue_style( 'kleo-rtl' ); } wp_enqueue_style( 'kleo-style' ); }Any help would be very appreciated. Sorry, I’m a noob in programming, we are a non-profit botanical project, so we can’t afford a programmer…😔
Guys,
am running a buddypress network and I want to share some tables but not others (I have my reasons). I’ve enabled BP_ENABLE_MULTIBLOG and have it working perfectly through the filters I have addeds for global_tables and meta_tables for each active component I want share. eg
add_filter(‘bp_messages_global_tables’,’bp_custom_use_global_tables’);
add_filter(‘bp_messages_meta_tables’,’bp_custom_use_global_tables’);However it looks like the core component uses $bp->core->table_name_notifications in a number of places so occasionally the local notification table is being used (and I want to use a global table in all cases for notiifications). I cant find any documentation on how to filter that one.
Can you please tell me how I can override this so that notications are always added to the global table?
Pete
Topic: Help with external images
Hello,
I would like to know if there is a way to make all buddypress work with uploads of images, files, videos, so that they are done externally, is there any complement or configuration for this? My idea is that users can upload all the content they want but without affecting my storage of my hosting, a greeting and thanks.
I’m setting up Buddypress and when I register a new account the activation email keeps bouncing back to the sender address. I get the following error:
SMTP error from remote mail server after end of data:
550 Messages should have one or no To headers, not 2.The “To” address IS in the “To” field TWICE but I can’t figure out why. I assume that’s why it’s bouncing back. I don’t have any other registration or membership plugins running right now. I am using WP SMTP MAIL to enable me to use Gmail as my sender. It DOES send the test email properly, and only to one address in the “To” field.
Any advice on this?
Hello,
My site is https://www.kidneylearninghub.com/. It is using the WPLMS plugin, which leverages BuddyPress for the login and user management.
After I updated the site with an SSL cert and domain, the login developed an issue where even though I have logged in with the correct user name and password, and the login cookie has been successfully created, the page does not update with the logged in user, and will not let you into the restricted content areas. Only after clicking around and trying many times will the site suddenly see the cookie and show you as logged in.
This screen shot shows that the cookie exists, but the site does not show a user logged in:
I have been through extensive troubleshooting of the site. My database, config files and site files all use the fully qualified URL; my host (GoDaddy) is configured with the certificate and URL. I have added the site URLs to the wp_config file as suggested by dozens of tutorials. What would cause the site to create the cookie but then ignore it? This happens regardless of browser, and with and without Incognito or private browsing. As I understand it, the site uses BuddyPress to log in, and then hands that login off to WordPress. The WordPress login (available if you choose reset password) also has the same problem.
Any suggestion is appreciated.
Hey Team,
Really love your plugin with great Features and extension, forum solutions available.
Wordpress version: 5.4.2
Buddypress Version: 6.1.0(Themes and plugins are all up to date. All the buddy press features are working fine except the below two issue)
Yes I face the same issue with twenty, twenty themes.
Website URL: gooalgenie.com
Issue URL: https://tinyurl.com/y43gqshzIssue 1:
I am facing issue with Making Menu/Nav Tabs and Subnav Ajax (pages to load without loading the complete page) – How can I achieve the same?
I researched a lot on various buddy press forums but could not figure out the solution for the same. One of the solutions I tried:
https://buddypress.trac.wordpress.org/ticket/6507 – add the code provided here on bp-custom.php and even on themes functions.php file but made no effect.
Is there any other forum that I can try.
Note: I have bp-custom.php file in mu-plugins directory and in child theme childtheme/buddypress/members/single/group.php file.
Issue 2:
Avatar and cover images look blur whereas they look fine in media library.