Search Results for 'buddypress'
-
Search Results
-
Hello everyone,
I’m trying to create a simple custom theme to override the BuddyPress (Nouveau) registration page, but I’m consistently running into a White Screen of Death (WSOD). I’ve been troubleshooting for a while and would appreciate any help you can offer.
My Goal:
To create a custom theme that overrides register.php from the BP Nouveau template pack.My Environment:
OS: Windows
Local Development Tool: DevKinsta
Plugin: BuddyPress (latest version)
The Problem:
When I activate my custom theme, I get a WSOD when trying to access the site (e.g., mysite.local/register/).Here is a summary of the troubleshooting steps I have already tried:
Enabled WP_DEBUG: I have set WP_DEBUG, WP_DEBUG_LOG, and WP_DEBUG_DISPLAY to true in my wp-config.php. However, no errors are ever displayed on the screen or written to the debug.log file. The page is just completely blank.
Checked for PHP Errors: I initially had parse errors (an extra } bracket) in my functions.php and register.php files. These have been found and corrected.
Checked for BOM: I have verified with my code editor (VS Code) that all my theme files are saved with UTF-8 encoding and do not have a Byte Order Mark (BOM).
Reset Permalinks: I have gone to Settings > Permalinks and clicked “Save Changes” multiple times to rebuild the rewrite rules.
Theme Deactivation Test: When I rename my theme’s folder to force WordPress to deactivate it, I can access wp-admin again. This confirms the issue is within my theme’s code.
File Permissions: I received a security warning that /wp-content/ was too writeable. I have reset the permissions for my entire site folder on my Windows machine to ensure they are not too permissive.
My Theme Structure and Code:
My theme is very simple.
1. Directory Structure for the Override:
wp-content/themes/kfluxtheme/buddypress/members/register.php
(The register.php file is an exact, unmodified copy from wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/members/)/* Theme Name: K-Flux Theme Author: My Name Version: 1.0 */
<?php /** * Theme functions and definitions. */ if ( ! function_exists( 'kfluxtheme_setup' ) ) { /** * Basic theme setup. */ function kfluxtheme_setup() { // Add support for BuddyPress (ESSENTIAL) add_theme_support( 'buddypress' ); // Let WordPress manage the document title. add_theme_support( 'title-tag' ); // Enable support for Post Thumbnails. add_theme_support( 'post-thumbnails' ); } } add_action( 'after_setup_theme', 'kfluxtheme_setup' ); /** * Enqueue scripts and styles. */ function kfluxtheme_enqueue_scripts() { wp_enqueue_style( 'kfluxtheme-style', get_stylesheet_uri(), array(), '1.0' ); } add_action( 'wp_enqueue_scripts', 'kfluxtheme_enqueue_scripts' );
Despite all these steps, the WSOD persists when my theme is active. Since WP_DEBUG is not showing any errors, I’m running out of ideas on how to debug this further.
Has anyone encountered a similar issue with DevKinsta or have any suggestions for what I might be missing?
Thanks in advance for any help.
We are adding BuddyPress to our MemberPress setup. On our MemberPress, we also have three tiers of memberships: Free, Basic, and Premium. The messaging will only be available for Basic and Premium members. Additionally, Basic and Premium members can also opt out of messaging.
Are there third-party addons that can be added to BuddyPress that can enable this setup? Or could this be done natively with BuddyPress?
Hello all. Versions 14.4.0, 12.6.0 & 11.5.2 are Maintenance and Security Releases. Please update, accordingly, when possible.
BuddyPress 14.4.0, 12.6.0 & 11.5.1 Maintenance and Security Releases
Hi everyone, I’ve been building a community website using BuddyPress where people can share restaurant experiences, and I set up a section specifically for Texas Roadhouse fans. The idea is to let users join the group, share menu reviews, upload food photos, and talk about their visits. However, I’ve been running into a technical issue: the Texas Roadhouse group page isn’t displaying properly compared to other groups.
When users join the Texas Roadhouse group, the activity feed either doesn’t update or loads very slowly. Sometimes the posts don’t appear at all until I refresh the page multiple times. What’s strange is that other groups on my site (like “Olive Garden” or “Chili’s”) work fine and update instantly.
I checked my BuddyPress settings, and everything looks identical across groups. The group permissions and activity stream settings are the same, so I don’t understand why this one page is behaving differently. I even tried disabling a couple of plugins (like caching and image optimization) to rule out conflicts, but the issue remained.
Another problem is with the group media uploads. When someone tries to upload a photo of their Texas Roadhouse meal, the upload hangs or fails completely, even though image uploads work in other groups. This makes me wonder if there’s some kind of database issue or corruption specific to this group ID.
Has anyone else faced a situation where a single BuddyPress group acts differently from the rest? I’d love to know if there’s a fix—whether it’s resetting the group, clearing caches, or maybe adjusting BuddyPress database tables. Any advice would be greatly appreciated, since this Texas Roadhouse group is one of the most popular on my site.
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?