Documentation Index
Fetch the complete documentation index at: https://docs.wcstudio.com/llms.txt
Use this file to discover all available pages before exploring further.
๐ WP Config Settings
WC Studio gives you developer-level control over key WordPress constants โ allowing you to enable or disable debugging, script behaviors, query logs, and core update settings without touchingwp-config.php.
๐ Go to: WC Studio โ Stores โ Select a Store โ Advanced โ WP Config
โ๏ธ Available Config Options
Each setting includes a description and toggle. Use these features responsibly โ many are intended for development and debugging only.๐ Enable Debug Mode (WP_DEBUG)
- Enables the display of PHP errors and warnings across your site.
- Useful during development to catch code issues.
- ๐ด Recommended: OFF on live sites.
๐ชต Log Errors
- Stores error logs in a file for easier debugging.
- Allows you to investigate issues without showing them to visitors.
โ ๏ธ Display PHP Errors (WP_DEBUG_DISPLAY)
- Displays PHP errors directly on the frontend.
- ๐ด Recommended: OFF unless youโre actively debugging.
๐งช Enable Script Debug
- Forces WordPress to use unminified core JS and CSS files.
- Helps developers diagnose issues in core scripts.
- ๐ด Should be disabled in production environments.
๐ซ Disable JavaScript Concatenation
- Prevents WordPress from combining JS files in the admin panel.
- Useful for debugging issues caused by script conflicts or minification.
- ๐ด Leave disabled unless youโre troubleshooting.
๐ Enable Save Queries (SAVEQUERIES)
- Logs all database queries to help you analyze performance.
- May slow down your site if left on.
- ๐ก Use temporarily in staging or dev environments.
๐ก Disable WordPress Core Updates
- Prevents automatic updates to WordPress core.
- Useful if youโre managing updates manually or running a heavily customized site.
โ ๏ธ Note: Keep track of security patches if you disable auto-updates.
๐ก Pro Tips
- Always test these settings in a staging environment before applying them to live stores.
- Combine error logging with object cache for safe debugging workflows.
- Revert all debug-related settings to OFF before launching.

