@wilcosky Hi Billy,
In answer to BuddyPress direction I would recommend you check out the posts for Mathieu Viet (@imath), he has been soliciting feedback on a number of features especially in the past months.
I would say that any feedback is useful. The only issue is time constraints as I see it.
Saving settings gives a “Sorry, you are not allowed to access this page” message. Trying to set to Nouveau won’t save. It just keeps going back to Legacy. Totally not working anymore.
Backstory: On a multisite. Past experiments with Buddypress on this multisite. Problems emerged during attempts to set up a new site in the multisite using Buddypress.
Troubleshooting attempts included shutting down other plugins, turning on registration of new users and sites, deleting table data in phpMyAdmin, etc. Tried deleting the subsite and recreating it. tried switching up themes. Tried clearing the cache. All work using Superadmin accounts.
The rest of the multisite is working fine.
No luck. Am I missing something that keeps it hopelessly broken, no matter how many times I try to wipe it and try again?
@doncomputing, this looks to me like it’s coming from MemberPress. I think you should ask MemberPress support if they can shed any light on what might be happening (or did MP already tell you to ask BuddyPress?)
What you have to do is to the WordPress.org PolyGlott translation web site:
https://translate.wordpress.org/locale/de/formal/wp-plugins/buddypress/
Get familiar with the translation system there (you can also download and upload files)
and after proposing about say a hundred translations,
join the WordPress DE Slack and in the #polyglots channel,
and kindly ask to become a PTE (Plugin Translation Editor) for BuddyPress.
I did this now and reviewed and translated all over 1000 missing or bad German translations!
If the informal “Du” (not the formal “Sie”) translation is enough for you,
let your WordPress installation download the latest translations by setting the global
Language in Settings > General > Language to “German”.
Otherwise, WordPress may also download my new translations automatically,
at least when you update the Plugin or switch the language.
The German translation I completed now is not yet perfect and 100% consitant,
so I am looking for reviewers, testers and contributors!
Please, by any means: Everyone using BuddyPress in “German”:
Flip your Site Language, and on the switch back to German (Du), it should download
soon download the new translation and try them out!
You can also review my translations here:
https://translate.wordpress.org/projects/wp-plugins/buddypress/stable/de/default/?filters%5Btranslated%5D=yes&filters%5Bstatus%5D=current&filters%5Buser_login%5D=bkaindl
If you have improvements proposals, please register on the site and submit your improvements!
(If you also drop me a note, I should be able to review and include your fixes!)
Thanks and I hope it works for everyone…!
What is it about this error that makes you think it’s BuddyPress?
Have you seen this error:
Fatal error: Uncaught MeprCreateException: The user was unable to be saved: Sorry, that username is not allowed. in /home/customer/www/bd-labours.com/public_html/2022-04-12-bu-2/wp-content/plugins/memberpress/app/models/MeprUser.php:619 Stack trace: #0 /home/customer/www/bd-labours.com/public_html/2022-04-12-bu-2/wp-content/plugins/memberpress-buddypress/MpBuddyPress.php(76): MeprUser->store() #1 /home/customer/www/bd-labours.com/public_html/2022-04-12-bu-2/wp-includes/class-wp-hook.php(308): MpBuddyPress->first_and_last_name(”) #2 /home/customer/www/bd-labours.com/public_html/2022-04-12-bu-2/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array) #3 /home/customer/www/bd-labours.com/public_html/2022-04-12-bu-2/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #4 /home/customer/www/bd-labours.com/public_html/2022-04-12-bu-2/wp-settings.php(623): do_action(‘init’) #5 /home/customer/www/bd-labours.com/public_html/2022-04-12-bu-2/wp-config.php(84): require_once(‘/home/customer/…’) #6 /home/customer/ww in /home/customer/www/bd-labours.com/public_html/2022-04-12-bu-2/wp-content/plugins/memberpress/app/models/MeprUser.php on line 619
Normal pages, like home, about, contact page.
I need to deactivate BuddyPress and then I’m able to edit with Elementor
Hi there,
Trying to work out the kinks of the membership portion of a client’s site before going live and am having some issues with the groups feature.
Whenever I send an invitation to a user to join the group, they get an email with a “go here to accept your invitation” link and a “visit the group” link. The latter goes the group page (but does not allow interaction since they are not yet a member), and the former goes to a blank page that just displays the banner and the footer and nothing else. Any ideas on why this is happening?
I’m using both buddypress and youzify together.
1. Install buddypress
2. enable groups
if it is not compatible contact the theme authors.
Check in activity section there is a select drop down to see whcih all users you sent friend requests to.
our vibe plugin for BuddyPress shows it like this : https://prnt.sc/S2CvwPfELHzP
Hi BP community,
In my community website, When users post something, I would like users to have only one privacy possibility : post in groups.
My website is based only on groups, and the activity post can only be in the groups.
Then, I would like to change the behavior of the form pop-up used to post an activity in the activity feed to behave as showed on the screen attached below.
To achieve that, I started to search some answers in the file “bp-templates/bp-nouveau/js/buddypress-activity-post-form.js”, but there is a lot of information and I don’t know if I’m in the right way.
Can someone help me to achieve that ?
Thanks in advance 🙂
Link of the image : https://ibb.co/4SsrPcM

To use your BP (BuddyPress) profile picture as the WordPress avatar, you can follow these steps:
Install and activate the “BuddyPress” plugin: Ensure that you have the BuddyPress plugin installed and activated on your WordPress site. This plugin adds social networking functionality, including user profiles, to your WordPress site.
Upload a profile picture in BuddyPress: Go to your BuddyPress profile and upload the desired profile picture. BuddyPress allows users to customize their profile information, including the profile picture. Typically, you can find the profile settings in the user dashboard or by navigating to your profile page on the front-end of your website.
Enable BuddyPress avatar syncing: By default, BuddyPress doesn’t automatically sync the profile picture with the WordPress avatar. You can enable this functionality by adding custom code to your theme’s functions.php file or by using a plugin specifically designed for this purpose.
Option 1: Custom code:
Open your theme’s functions.php file (Appearance > Theme Editor > functions.php) and add the following code snippet:
php
Copy code
function bp_sync_profile_picture_with_avatar( $avatar, $id_or_email, $size, $default, $alt ) {
if ( function_exists( ‘bp_core_fetch_avatar’ ) ) {
$avatar = bp_core_fetch_avatar( array(
‘item_id’ => $id_or_email->user_id,
‘type’ => ‘full’,
‘html’ => false
) );
}
return $avatar;
}
add_filter( ‘get_avatar’, ‘bp_sync_profile_picture_with_avatar’, 10, 5 );
Option 2: Use a plugin:
Install and activate a plugin like “BuddyPress Default Avatar” or “BuddyPress Avatar Sync.” These plugins simplify the process by automatically syncing the BuddyPress profile picture with the WordPress avatar.
Verify the avatar sync: Log out of your WordPress account and visit your website as a guest or open an incognito/private browsing window. Leave a comment or view your author bio to see if the BuddyPress profile picture is now being used as the WordPress avatar.
By following these steps, your BuddyPress profile picture should now be synced with your WordPress avatar.
heres how you can fix this.
1. Disconnect the members page from WP admin – Settings – BuddyPress – PAges – member , set it to none.
2. Create your members page in Elementor
3. Re-save this page as members page back in 1.
Hey there! I encountered a problem while using the BuddyPress plugin with Geo Directory. (I use Elementor Pro)
I downloaded the plugin and set up the Register & Activate pages manuall, but none of the pages were selected. So, I created two new pages called “register” and “activate.” However, I noticed that the button on the side, as shown in the documentation, was missing. When I checked the pages, it showed that BuddyPress registration pages were allocated, but there was no shortcode block or any content on the pages. Additionally, when I tried to load the pages, it failed and gave me an error. I even tried saving in safe mode, but the issue persisted. I would really appreciate any help in fixing this problem. Thanks in advance! 🙏
Here is the Loom:
The notifications Js code of the plugin doesn’t look to work properly with BuddyPress // bp-em-notifications.php
I’ve done my own Js code and it works. If anybody needs help with this, just let me know.
After extensively researching this same topic, I found this:
BuddyPress
It seems to be the only booking plugin on the market right now that explicitly supports Buddypress. Has anyone used WP Base with Buddypress integration? Did it meet your needs?
I wrote a function to return popular users with relatively little difficulty, following existing documentation. I still cannot find any info on how ‘popular’ sorting works in Buddypress, though. Is it based on visits? Engagement on profile activity? There are so many different ways that one could determine ‘popularity.’
I’m looking for specifics, so I can determine if this method of sorting is suitable to my needs. I’d also really like to know if it’s possible to calculate ‘popularity,’ however that’s determined, over time. Does anyone have info on this?
Hello, I would really appreciate it to get support on this issue. Are any BuddyPress plugin developers available to advise please?
Hello,
I am just getting my toes into BuddyPress’ documentation, and came across the ‘popular’ user type in BP_User_Query.
I have no idea how ‘popular’ users are defined in BuddyPress. My questions are as follows:
1. How is the ‘popular’ user type defined and sorted in BuddyPress?
2. If ‘popular’ users are calculated across a period of time, could one theoretically sort users into ‘most popular by day, week, month, etc.’?
3. The documentation recommends bp_parse_args() for filtering members. What would a simple function to return popular users using bp_parse_args() look like?
Hello, thank you for your answer but you have trouble reading my post… I know how to create the pages, that’s no problem, but when I create them and I click on the link of the page to assign in the settings of BuddyPress, it shows me a critical error or simply redirects me to my 404 page. I don’t understand where the problem comes from ☹️
If you want to create a booking system on your WordPress website that integrates with BuddyPress, you have several options to choose from. One of them is Appointment Scheduling and Booking Manager, which is a plugin that allows your members to manage their appointments on your BuddyPress-powered community website. This plugin lets you create unlimited services, calendars, locations and providers, and supports PayPal and Stripe payment gateways. You can also customize the booking form fields, set seasonal working hours, send reminder and follow-up emails, and more.
Another option is BookingPress, which is a plugin that allows you to set up a complete booking system according to your requirements on your WordPress website. This plugin is suitable for any business or individual who wants to manage their appointment scheduling online. You can create unlimited booking forms, calendars and categories, and configure different settings for each of them. You can also enable online payments, sync with Google Calendar, send email notifications, and more.
I did a search of previous posts and none of them were helpful and were from so many years ago. I’m really hoping there is an up to date solution.
I am looking for a plugin that will integrate with Buddypress allowing visitors to book and/or see a person’s availability on a calendar. There are so many booking plugins I have used in the past but have no idea how they could integrate with buddypress.
If this is impossible then at least I would like the user/member to be able to display a calendar on their profile where they could manually enter booked dates and times.
Hi,
I have a Custom Post Type ‘golfs’ created with CPT UI.
I try to get the golfs comments (activated) in the Activites feed of BuddyPress without success…
I put the code i found here ( https://codex.buddypress.org/plugindev/post-types-activities/ ) in my bp-custom.php file :
function customize_page_tracking_args() {
// Check if the Activity component is active before using it.
if ( ! bp_is_active( 'activity' ) ) {
return;
}
// Don't forget to add the 'buddypress-activity' support!
add_post_type_support( 'golfs', 'buddypress-activity' );
/**
* Also don't forget to allow comments from the WordPress Edit Page screen
* see this screencap https://cldup.com/nsl4TxBV_j.png
*/
bp_activity_set_post_type_tracking_args( 'golfs', array(
'action_id' => 'new_blog_page',
'bp_activity_admin_filter' => __( 'Published a new page', 'custom-textdomain' ),
'bp_activity_front_filter' => __( 'Page', 'custom-textdomain' ),
'bp_activity_new_post' => __( '%1$s posted a new <a href="%2$s">page</a>', 'custom-textdomain' ),
'bp_activity_new_post_ms' => __( '%1$s posted a new <a href="%2$s">page</a>, on the site %3$s', 'custom-textdomain' ),
'contexts' => array( 'activity', 'member' ),
'comment_action_id' => 'new_blog_page_comment',
'bp_activity_comments_admin_filter' => __( 'Commented a page', 'custom-textdomain' ),
'bp_activity_comments_front_filter' => __( 'Pages Comments', 'custom-textdomain' ),
'bp_activity_new_comment' => __( '%1$s commented on the <a href="%2$s">page</a>', 'custom-textdomain' ),
'bp_activity_new_comment_ms' => __( '%1$s commented on the <a href="%2$s">page</a>, on the site %3$s', 'custom-textdomain' ),
'position' => 100,
) );
}
add_action( 'bp_init', 'customize_page_tracking_args' );
New golfs are displayed in the activities feed but not the new comment.
Can anybody tell me what’s wrong ?
WP 6.2.2
BuddyPress 11.2.0
PHP 7.4
Thank’s in advance
Gil
Está ocorrendo um erro crítico no meu site, algo sobre um problema no código BP-CORE e a ausência de um plugin para Cache de Objetos Persistentes.
A informação é exibida na página de diagnóstico, e eu preciso de ajuda para resolver.
Desde já obrigado pela atenção!
To hide expired Paid Memberships Pro (PMP) members from the Buddypress members list, you can utilize custom code by adding a filter to modify the read query that retrieves the members. Here’s a general outline of the steps you can follow:
Create a child theme: If you haven’t already, create a child theme for your Buddypress-enabled WordPress website of . This allows you to add custom code without modifying the parent theme files directly.
Locate the functions.php file: In your child theme, locate the functions.php file. If it doesn’t exist, create a new one.