Introduction
The Developer Mode Enabled indicator in BuddyBoss Theme Options appears when WordPress debug mode is active.
Debug mode (WP_DEBUG) is useful during development but should be disabled on production sites to hide notices and remove the developer badge.
Disable WP_DEBUG in wp-config.php
- Access your site’s files via FTP or your hosting control panel’s File Manager.
- Open the wp-config.php file in your WordPress root directory.
Find the line:
define( 'WP_DEBUG', true );
Change it to:
define( 'WP_DEBUG', false );
- Save the file and refresh your WordPress admin. The “Developer Mode Enabled” indicator should disappear from BuddyBoss Theme Options.
Verify via Site Health
- In WordPress admin, go to Tools > Site Health > Info.
- Expand WordPress Constants and confirm WP_DEBUG is Disabled.
Troubleshooting and FAQs
Q: I updated WP_DEBUG but still see Developer Mode?
A: Clear any object or page cache, then refresh your browser or log out and back in.
Q: Could another file enable debug mode?
A: Check for environment-specific config files (e.g., wp-config-local.php) or constants set in mu-plugins.
Q: Is it safe to disable WP_DEBUG?
A: Yes. Disabling debug mode on live sites prevents PHP notices from displaying to users and removes the developer banner.