Search Results for 'buddypress'
-
Search Results
-
Anyone else having issues with nouveau and creating new groups?
wp version: 6.8.2
BB version: 14.3.4From the frontend go create a group step 1 (enter name/details), press next
In legacy I get to step #2, and other steps just fine
In nouveau, I get a site crash
In both cases, a group is created but of course I never got to steps past #1
Here’s the php errors.log
[Thu Aug 28 20:57:57.144448 2025] [proxy_fcgi:error] [pid 3199895:tid 3199921] [client 47.146.236.56:57038] AH01071: Got error 'PHP message: PHP Fatal error: Uncaught Error: Call to a member function get_secondary() on null in /srv/buddypress/wordpress/wp-content/plugins/buddypress/bp-templates/bp-nouveau/includes/template-tags.php:802\nStack trace:\n#0 /srv/buddypress/wordpress/wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/groups/single/parts/item-nav.php(12): bp_nouveau_has_nav()\n#1 /srv/buddypress/wordpress/wp-includes/template.php(812): require('...')\n#2 /srv/buddypress/wordpress/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(225): load_template()\n#3 /srv/buddypress/wordpress/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(67): bp_locate_template()\n#4 /srv/buddypress/wordpress/wp-content/plugins/buddypress/bp-templates/bp-nouveau/includes/functions.php(1612): bp_get_template_part()\n#5 /srv/buddypress/wordpress/wp-includes/class-wp-block.php(586): bp_nouveau_render_primary_nav_block()\n#6 /srv/buddypress/wordpress/wp-includes/blocks.php(2359): WP_Block->render()\n#7 /...', referer:https://fam.actlocalfest.org/groups/create/step/group-details/Topic: Social Login
Is there a free plugin to add Gmail login almono?
The two most popular plugins, Nextend Social Login and miniOrange Social Login, integrate with buddypress only in the pro version.
ThanksHi BuddyBoss community,
I’m having trouble activating BuddyBoss components programmatically. I’ve tried several approaches, but the components aren’t being enabled. Here’s what I’ve attempted:
Using bp_update_option()
Direct database updates
Different hooks (init, after_setup_theme)
Current Behavior:No components activate
No error messages in logs
Tried both single site and multisite
What I Need:A reliable way to activate components (Groups, Activity, Messages, etc.)
Best practices for programmatic component management
Any known issues with automatic component activation
<?php
/**
* BuddyBoss Components Activator
* Add this to your theme’s functions.php or as a must-use plugin
*/// Make sure we don’t expose any info if called directly
if (!defined(‘ABSPATH’)) {
exit;
}// Hook into after_setup_theme to ensure BuddyBoss is loaded
add_action(‘after_setup_theme’, ‘activate_buddyboss_components_on_init’, 9999);function activate_buddyboss_components_on_init() {
// Check if BuddyBoss is active
if (!function_exists(‘buddypress’)) {
return;
}// Get current active components
$active_components = get_option(‘bp-active-components’, array());// Components we want to activate
$components = array(
‘groups’ => 1,
‘activity’ => 1,
‘messages’ => 1,
‘notifications’ => 1,
‘friends’ => 1,
‘settings’ => 1,
‘xprofile’ => 1,
‘members’ => 1
);// Merge with existing components
$new_components = array_merge($active_components, $components);// Only update if there are changes
if ($active_components != $new_components) {
update_option(‘bp-active-components’, $new_components);// Clear BuddyBoss component cache
if (function_exists(‘bp_core_reset_incrementor’)) {
bp_core_reset_incrementor(‘bp_active_components’);
}// Flush rewrite rules on next load
set_transient(‘bb_flush_rewrite_rules’, ‘1’, 60);
}
}// Handle rewrite rules flush
add_action(‘init’, ‘bb_maybe_flush_rewrite_rules’, 9999);
function bb_maybe_flush_rewrite_rules() {
if (get_transient(‘bb_flush_rewrite_rules’)) {
delete_transient(‘bb_flush_rewrite_rules’);
flush_rewrite_rules(false);
}
}Hello!
I am using BuddyPress + BUddyBuilder + bbpress + Woocommerce for subscriptions.
I now have the problem that for testusers there is no profile being displayed. When navigating with my admin profile, I can open the “my account” page without any problems, the full BuddyPress Profile with Woocommerce integrations are being displayed.
Do you have any idea how I may resolve this issue, so that users can access their profiles?Thanks and best regards
Topic: Supporter Badge
I need a way to add a sort of Supporter Badge to all my Buddypress-users who support me.
A custom badge should be shown on their profile.
It also should be clickable (link to a specific page)
Is that possible? What options do I have?Topic: Name shows in browser tab
Hi – apologies if this is a really obvious one but I don’t seem to be able to find a way to do it.
On my buddypress profiles, I’m using usernames and the mention names. I don’t want real names to appear anywhere and it appears in the browser tab, is there a way to change it? I found this but it doesn’t seem to work for me, any suggestions gratefully receieved? Thanks 🙂
// Change User Profile Browser Page Title. function yz_change_buddypress_browser_tab_title( $bp_title_parts ) { if ( bp_is_user() ) { return "XXXX"; } return $bp_title_parts; } add_filter( 'bp_get_title_parts', 'yz_change_buddypress_browser_tab_title', 999 );How can I remove the “unsubscribe” link at the bottom of emails sent by buddypress to users?
ThanksTopic: Problem / in Permalinks
If Permalinks aren’t set with / at the end of /%postname%/ but, for example, /%postname%.html, even though it doesn’t actually affect the BuddyPress URLs, only the posts and pages, when navigating the forum tabs, the / is missing and the URL is broken.
For example: to see a user’s replies, the URL is
/members/ricscaforums/replies/
and not
/members/ricsca/forums/replies/