-
Boone Gorges wrote a new post on the site BuddyPress.org 5 years, 11 months ago
Immediately available is BuddyPress 4.1.0. This maintenance release fixes 3 bugs related to last week’s 4.0.0 release, and is a recommended upgrade for all BuddyPress installations.
For complete details on the […]
-
Boone Gorges updated the Version 4.1.0 page, on the BuddyPress Codex 5 years, 11 months ago
Version 4.1.0 is a BuddyPress maintenance release. It was released on December 5, 2018. 3 bugs were fixed.
For version 4.1.0, the database version (bp_db_version in wp_options) was 11105, and the Trac revision […]
-
Boone Gorges started the topic BuddyPress 4.0.0 "Pequod" in the forum Miscellaneous 5 years, 12 months ago
BuddyPress 4.0.0 “Pequod” is now available! https://buddypress.org/2018/11/buddypress-4-0-0-pequod/
-
Boone Gorges wrote a new post on the site BuddyPress.org 5 years, 12 months ago
BuddyPress 4.0.0 “Pequod” is now available!
A focus on data privacy and control
BuddyPress boasts a proud history of letting community members and managers control their data, independent of third-party, […] -
Boone Gorges updated the Version 4.0.0 page, on the BuddyPress Codex 5 years, 12 months ago
Version 4.0.0 is a major BuddyPress feature release.
For Version 4.0, the database version (_bp_db_version in wp_options) was 11105, and the Trac revision was 12300. To read the full list of features, fixes, […]
-
Boone Gorges wrote a new post on the site BuddyPress.org 6 years ago
BP 4.0.0 Release Candidate 1 is now available. This package contains the code that we think we’ll ship as BuddyPress 4.0.0 later in November. If you build BuddyPress plugins or themes, you’re encouraged to give […]
-
Boone Gorges updated the Version numbering page, on the BuddyPress Codex 6 years ago
Beginning with version 3.0.0, BuddyPress releases are numbered according to a slightly modified version of Semantic Versioning (SemVer).
As in SemVer, BuddyPress version numbers follow the MAJOR.MINOR.PATCH […]
-
Boone Gorges replied to the topic Desactive / Remove last_activity metadata on user_meta in the forum How-to & Troubleshooting 6 years, 5 months ago
The simplest way to disable, at the moment, is to squelch the
update_user_meta()
call. Untested, but something like this should work:
add_filter( 'update_user_metadata', function( $should_update, $object_id, $meta_key ) {
if ( 'last_activity' === $meta_key ) {
return false;
}return $should_update;
}, 10, 3 );
I’ve opened…[Read more]
-
Boone Gorges wrote a new post on the site BuddyPress.org 6 years, 10 months ago
BuddyPress 2.9.3 is now available. This is a security and maintenance release. We strongly encourage all BuddyPress sites to upgrade as soon as possible.
The 2.9.3 release addresses two security issues: […]
-
Boone Gorges replied to the topic Group. Custom page in the forum How-to & Troubleshooting 6 years, 11 months ago
I’m afraid I haven’t ever used any of the available group chat plugins for BuddyPress, but a web search shows that a number are available: https://duckduckgo.com/?q=buddypress+group+chat&t=ffab&ia=web
-
Boone Gorges replied to the topic Custom Member Profile Fields in the forum Creating & Extending 6 years, 11 months ago
There should be nothing additional required – no registration or enqueuing.
It looks like I made a typo in my original comment – I doubled the
/buddypress/
path. Here’s the proper destintation in your theme:
wp-content/themes/your-theme/buddypress/members/single/profile/profile-loop.php
Sorry about that!
-
Boone Gorges replied to the topic Dont want buddypress registration and activity page in the forum How-to & Troubleshooting 6 years, 11 months ago
Excellent! Good luck with your project 🙂
-
Boone Gorges replied to the topic Custom Member Profile Fields in the forum Creating & Extending 6 years, 11 months ago
If you need to do extensive customization to the appearance of the user profile, I’d recommend overriding BP’s templates in your child theme. For example, you can copy the file
wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/profile/profile-loop.php
towp-content/themes/your-theme/buddypress/buddypress/members/single/…
[Read more] -
Boone Gorges replied to the topic Kindly help! Buddypress plugin leads to error 508 in the forum Installing BuddyPress 6 years, 11 months ago
508 usually means that the hosting provider has put a limit on the resources available to your account. See https://stackoverflow.com/questions/20040307/how-to-fix-the-508-resource-limit-is-reached-error-in-wordpress. BuddyPress does generally require more resources (RAM, MySQL I/O) than a standard WP installation. I’d suggest reaching out to your…[Read more]
-
Boone Gorges replied to the topic Delete a notice to all users in the forum How-to & Troubleshooting 6 years, 11 months ago
Applying https://buddypress.trac.wordpress.org/changeset/11750 should fix the problem. Note that this change is in bp-messages/bp-messages-template.php, *not* notices-loop.php. There should be no need to reapply these changes after BuddyPress 3.0, where the fix will become part of the BP release.
-
Boone Gorges replied to the topic Migration from vBulletin to Buddypress in the forum Miscellaneous 6 years, 11 months ago
Here’s some info on migrating vBulletin data to bbPress, which will get your content and users in. https://codex.bbpress.org/getting-started/importing-data/import-forums/vbulletin/
-
Boone Gorges replied to the topic [BuddyPress Extend Fields] Display fields on user selectable tab in the forum Third Party Plugins 6 years, 11 months ago
Hi @gregthebuzz – You might have better luck moving some of your logic into
BP_Group_Extension
, which does most of the template-related work for you. See https://codex.buddypress.org/developer/group-extension-api/. Thedisplay()
method is where the content for your public-facing tab will go, while theedit
parameter will help you configure what…[Read more] -
Boone Gorges replied to the topic Flatsome theme UX Page Builder not loading in the forum Installing BuddyPress 6 years, 11 months ago
Hi @billybelly – It’s difficult for us on the buddypress.org forums to provide concrete advice on a non-free product, because we don’t have access to test it. If you paid for the UX Builder project, then they ought to be the ones providing you with support.
That being said, it’s possible that BP templates are inherently incompatible with this…[Read more]
-
Boone Gorges replied to the topic No icon of avatars on mobile – admin bar in the forum How-to & Troubleshooting 6 years, 11 months ago
It’s a bit hard to tell what’s going on without being able to log in and see exactly what your users are seeing.
I suggest logging in as a non-admin, then right-clicking the space where the avatar should appear. Select ‘Inspect Element’, and then browse through the developer tools to see whether the avatar is actually in the source. If it is, but…[Read more]
-
Boone Gorges replied to the topic Dont want buddypress registration and activity page in the forum How-to & Troubleshooting 6 years, 11 months ago
Hi @demonos – Please understand that everyone who responds to things on these forums does so as a volunteer. You can help to decrease overall response time by helping a user or two yourself 🙂
The following bits should be enough to reenable wp-signup.php:
[Read more]
remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
add_filter(… - Load More
@boonebgorges
Active 1 year, 3 months ago