Troubleshooting
Free & ProQuick solutions to common BuddyX Pro issues.
Quick Fixes (Try First)
Before anything else:
- Clear browser cache - Ctrl+Shift+R (Windows) / Cmd+Shift+R (Mac)
- Clear site cache - Purge caching plugin
- Try incognito mode - Rules out browser extensions
- Wait 5 minutes - Server may need time
Installation Issues
Theme won't activate
Check PHP version:
- Tools > Site Health > Info > Server
- Need PHP 8.1 or higher
- Contact host to upgrade if needed
Check WordPress version: Need WordPress 6.0+. Update at Dashboard > Updates.
Wrong ZIP file:
Upload the inner buddyxpro folder, not the download wrapper.
White screen after activation
Increase memory:
// Add to wp-config.php
define( 'WP_MEMORY_LIMIT', '256M' );
Enable debugging:
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
Check /wp-content/debug.log for errors.
Customizer Issues
Customizer blank or missing options
BuddyX Pro 5.1.0 dropped the Kirki dependency - the customizer framework is now built into the theme, so there is nothing extra to install. If the customizer panel renders blank, verify:
- The theme is fully unzipped under
wp-content/themes/buddyx-pro/(a partial upload missinginc/Customizer_Framework/will fail to register fields). - No JS error in the browser console (a plugin conflict on
customize-controls.jscan blank the sidebar). - The user has the
edit_theme_optionscapability.
If the panel still shows nothing, switch the theme, then back to BuddyX Pro, to re-register controls.
Changes not saving
- Disable security plugins temporarily
- Clear all caches
- Try different browser
Changes not showing on frontend
| Cache Type | How to Clear |
|---|---|
| Browser | Ctrl+Shift+R |
| Plugin | WP Rocket > Clear Cache |
| CDN | Cloudflare > Purge Everything |
Header Issues
Mobile menu won't open
- Clear all caches
- Disable JS minification in caching plugin
- Check browser console (F12) for JavaScript errors
Cart icon missing
- Verify WooCommerce is active
- Customize > Site Header > Header Elements
- Toggle Site Cart to On
Logo wrong size
Customize > Site Identity > Logo Width
Or add CSS:
.site-logo-wrapper img { max-width: 180px !important; }
Sticky header not working
- Customize > Site Header > Sticky Header
- Toggle Enable Sticky Header to On
- Clear cache
BuddyPress Issues
Members page 404
- Settings > Permalinks
- Click Save Changes (don't change anything)
"Requires BP Nouveau" error
- Settings > BuddyPress > Options
- Select BP Nouveau under Template Pack
- Save
Activity stream empty
- Enable Activity at Settings > BuddyPress > Components
- Create test content (post status update)
- Clear cache
Cover photos won't upload
- Check PHP upload limit (need 10MB+)
- Check folder permissions:
chmod 755 wp-content/uploads
WooCommerce Issues
Shop page 404
- WooCommerce > Settings > Products
- Verify Shop Page is assigned
- Settings > Permalinks > Save Changes
Mini-cart not opening
- Clear all caches
- Disable JS minification
- Check browser console for errors
Performance Issues
Site loading slowly
Quick wins:
- Install caching plugin (WP Rocket, W3 Total Cache)
- Optimize images (use WebP, compress)
- Use CDN (Cloudflare free tier)
- Deactivate unused plugins
Customizer slow
- Increase PHP memory to 256MB
- Reduce Google Fonts loaded
- Disable admin-heavy plugins temporarily
Memory exhausted errors
// Add to wp-config.php
define( 'WP_MEMORY_LIMIT', '256M' );
define( 'WP_MAX_MEMORY_LIMIT', '512M' );
Dark Mode Issues
Toggle not appearing
- Customize > Site Skin > Color Mode
- Toggle Dark Mode Toggle to On
- Clear cache
Dark mode colors wrong
Customize > Site Skin > Dark Mode Colors
Configure:
- Dark background color
- Dark text color
- Dark link color
Mobile Issues
Elements overlapping
- Check custom CSS isn't breaking mobile
- Add mobile-specific CSS:
@media (max-width: 767px) {
/* Your fixes */
}
Text too small
Customize > Typography > Body Typography
Increase font size, or add CSS:
@media (max-width: 767px) {
body { font-size: 16px; }
}
Error Messages
500 Internal Server Error
- Rename
.htaccessto.htaccess-old(test if site loads) - Increase PHP memory/timeout
- Check file permissions (files: 644, folders: 755)
Database connection error
- Verify credentials in
wp-config.php - Contact host - database server may be down
White screen of death
- Enable debugging (see above)
- Increase memory
- Disable plugins via FTP: rename
/plugins/to/plugins-disabled/
Still Stuck?
Before Contacting Support
Gather this info:
- WordPress version (Dashboard > Updates)
- BuddyX Pro version (Appearance > Themes)
- PHP version (Tools > Site Health > Info > Server)
- Screenshot of issue
- Steps to reproduce
Contact Support
Email: support@wbcomdesigns.com
See Before Contacting Support for checklist.
Related
- FAQ - Quick answers by topic
- Installation Guide
- BuddyPress Setup