Skip to main content

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 touching wp-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.
๐Ÿ’ก Use this with debug mode enabled to capture detailed logs without exposing them publicly.

โš ๏ธ 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.