Just checked https://www.danskeosteopater.dk/find-en-osteopat/members/?s=anders & it seems to work as expected.
If you’re talking about the search form displayed on the right side of your page, it’s not generated by BuddyPress. Have you tried to reach the plugin author of the BP Profile Search plugin there https://wordpress.org/support/plugin/bp-profile-search/ ?
Hi, I’m back 🙂
I confirm this is working as expected. I’ve used this code to generate the Twitter WP Contact method: https://gist.github.com/imath/c634d9bfb575f128d76a25aaa76fc2e5
Then, I’ve created a new xProfile field using the WordPress text field type, as shown in the below screenshot.

Once done, I was able to find the new input inside the user’s profile edit screen on front-end, see screenshot below.

When I’ve submitted my edits, the twitter link was saved successfully and on the user’s profile view screen, it is displayed as a clickable link:

The same goes for the WP Dashboard profile, see below:

Hi,
Just like WordPress PHP8 is ok with BuddyPress, see our PHPUnit corresponding GH action: https://github.com/buddypress/buddypress/runs/4734025743?check_suite_focus=true
I am using WOrdpress 5.8.3 I have BuddyPress 9.2.0 I am using Woffice theme
I do get messages that BakeryBuid cannot update and I do not know if that is related to my problem
On the home page banner I have a link to “Activity”. When clicked on it “loads community updates”. However it seems stuck on profile changes from 3 months ago and does not show recent topic changes
In the Dashboard there is an icon for “Activity” and that too only lists activity up to 3 months ago.
How do I refresh the list???
I have been trying to figure this out for quite some time. I really do not understand who, if anybody, would want to destroy every image uploaded to a website. It seems everyone would want nice images. I am running buddyboss, which is built on buddypress, and even the images uploaded to activity feed are absolutely destroyed. Changing wordpress compression quality does nothing. I makes absolutley no sense whatsoever.
Hello everyone 🙂
I wish to remove the whole title (header?) of posted activities of a specific user (algoflash)
I am no developer. I can make use of CSS (child theme) or add something to functions.php, but barely more 🙁
Any help would be greatly appreciated! Thank you!
The website is https://algomuse.fr
Wordpress 5.8.2 and BP 9.2.0

Hi everyone
Anyone been able to re-create Tumblr features with BuddyPress?
I like the idea of using WP over other platforms as the WYSIWYG editor is nice and the idea that users could have some choice over their profile themes.
Thing is, we would like front end only dashboard for users and the ability to have re-blogging with quotes, front page with popular content, hashtags, search for content/hastags, user directory etc
Frontend options looks to just be https://wordpress.org/plugins/wp-user-frontend/ ??
Not sure how to do directory of users and popular content though.
Any thoughts?
I am having trouble between the buddypress plugin and my avada wordpress theme. 1) My activity does not come up as a page. Since I am using Ultimate Membership Pro (UMP) plugin, I want to lock the activity stream page so only members have access. Currently it keeps giving me a 404 as my page title.
Thank you for your reply.
I want to create a Senior Developer Group; and a Junior Developer group.
then I want to create two different environments where work is assigned to each group.
I want to assign work by group and not by username.
groups will be managed by Managers, tasks will be assigned by groups
So I want to all group entries where WordPress only allow user entire
any advice is appreciated
I’ve figured out the BuddyPress plugin is overloading my server. When I go live this will also affect SEO due to almost triple page load time, even on pages that aren’t BuddyPress related. I narrowed the issue down to a constant call of the admin-ajax.php page in WordPress. This can be turned off by the “Activity auto-refresh” under Options in BuddyPress’ settings. Once turned off, page load decreased significantly and it’s within Google’s acceptable load time. The problem with doing this, is users don’t get updates. They’d have to refresh the page to see updates and they’d have no idea when new updates were added.
Is there anyway to fix this issue with this switch on? I’m overloading the shared hosting plan while not live and only three users active.
I thought of one way that doesn’t fix the issue but gives the site owner more leeway. Instead of an on/off switch for the “Activity auto-refresh” setting, can there be a textbox for the site owner to enter refresh milliseconds? The on/off switch can still be present, but for those of us that need more control over this setting using a milliseconds value would give the user somewhat real time updates, meet Google’s page load requirements, and won’t overload shared hosting plans.
Here’s what the site is running. I’d rather not give the site link out on an open forum and destroy my hosting plan.
WordPress Version: 5.8.2
BuddyPress Version: 9.1.1
Hostinger Business Account and this is the only site on this account so far.
Thanks,
NicCrockett
Hi everyone.
I have been looking around the web for several days, but I have not found anything that satisfies me.. As the title suggests, I would like “my” users to have the ability to upload and use animated avatars.
At the moment it is not possible because when a user tries to upload an animated gif, they are asked to crop it and there is no way to skip image cropping.
Also the Gravatar service does not support animated avatars.. or so I have read around the web.
As silly as it may seem, I find it highly limiting, speaking of user experience, not to be able to upload an animated avatar.
Can someone help me?
In case there is no way to load an animated gif without it being resized, is it possible to add a field in the front-end user’ profile where he can insert a link to an image like in the phpbb forums?
my WordPress is updated to version 5.8.2
my buddypress is updated to version 2.1.1
Link to my site MRLab
I don’t use child theme.
In case I have created a duplicate topic, I apologize in advance.
In my defense my English is not the best and I haven’t seen any other open topics about it.
Thanks in advance to anyone who will help me and Merry Christmas to everyone!
The answer is cached page. This is a typical issue with WordPress sites. That in order to login the page load request must bypass all cache and hit the server. The server then reads the cookie and logs the user in.
We create a framework ( going live soon on wp.org ) for BuddyPress that works using JWT tokens and without cookies. The result is that is perfectly cacheable system which even works with serverless applications.
In case this is helpful for anyone, I was able to get an Avada child theme to enqueue BP Nouveau styles conditionally based on code detailed here placed in my child theme’s functions.php file and making sure BP Nouveau’s /css/ directory sits in the same directory.
function register_nouveau_stylesheet() {
wp_register_style( 'bp-nouveau-enqueue', get_stylesheet_directory_uri() . '/css/buddypress.min.css' );
}
add_action( 'init', 'register_nouveau_stylesheet' );
function conditionally_enqueue_nouveau_stylesheet() {
// only enqueue on members-directory page slug
if ( is_page( 'members-directory' ) ) {
wp_enqueue_style( 'bp-nouveau-enqueue' );
}
}
add_action( 'wp_enqueue_scripts', 'conditionally_enqueue_nouveau_stylesheet' );
Unfortunately, logged in users will end up loading the Nouveau stylesheet twice so I’ll have to update this code further so it checks for login status and possibly user role. Hopefully, I can find a way to conditionally enqueue BP’s styles for the directory only as well. I don’t need those styles loading site-wide!
I’m getting the same error on my site. It doesn’t send activation emails. Using the code above worked, but now it’s sending a basic vanilla email with <wordpress@domain.com> as the subject and went to spam. It’s also not sending password reset emails at all.
Following above fix, will start sending textual mail, not HTML emails.
This plugin https://wordpress.org/plugins/vibe-buddypress-to-wp-mail-fix/ would use WP Mail and send HTML emails.
https://github.com/SparkPost/wordpress-sparkpost/issues/32
So it turns out, there is a very quick & easy solution. buddypress developers already made it possible to ignore their own implementation of wp_mail and fallback to wordpress’s default wp_mail (which will allow sparkpost plugin to do its magics). If you add the following snippet (functions.php of your theme or similar), it should just work.
add_filter(‘bp_email_use_wp_mail’, function() {
return true;
});
BuddyPress version – 10.0.0-beta1 or 9.1.1(stable version)
Theme – Twenty Twenty or any theme
Wordpress version – 5.8.2
When I change Cover Image it is working fine.
But when I change Profile Photo it is giving error – There was a problem cropping your profile photo.
I am not able to find out why it is giving this error.
Please help urgently
Why do I get this pop up on my wordpress?
“The following active BuddyPress Components do not have associated WordPress Pages: Register.”
I have to use Buddypress for something, but I dont want to associate WordPress Pages. Can I turn off this error? If I click on it, it stuffs up my site.
Yes, there are 2 most probable reasons :
1. Reverse IP does not match.
2. Missing SPF rules in DNS. If you have cPanel powered server, you can easily check in its SMTP settings which is able to detect and tell you the exact cause. You may be missing a SPF rule in your DNS, cPanel will mention that.
—-
A quick alternate is to install a WordPress mail plugin like Postman SMTP and try sending the emails in the textual format, or use this plugin : https://wordpress.org/plugins/vibe-buddypress-to-wp-mail-fix
The migration to WordPress rewrites API is a welcome change, although quite late to the party. We’ve been experimenting a lot lately inside BuddyPress core and now with this change do you think we can remove initialisation of BuddyPress on all the Pages in WordPress ?
The BuddyPress gets initialised on all the pages / posts of WordPress, creating its massive object at run time using URL’s. This creates an overhead as BuddyPress gets initialised on page where it is not in use.
Do you think, migrating to WP Rewrites, we can take this up and remove this forced initialisation.
I think the wp_embed filter can be used to embed tiktok videos.
wp_embed_register_handler()
Perfection! This looks really really good 🙂
Is it possible to integrate this directly with the info on the member profiles in anyway?
Maybe WordPress / Buddy press could buy your tech?
Its so nice to have these infoboxes for each article and Company presentation-articles.
#LinkedIn
Thank you for reporting this should be logged in the bug report.
https://buddypress.trac.wordpress.org/report/1