How to Troubleshoot WordPress Plugins
This page explains how to initially troubleshoot WordPress plugins.
1. Take a backup of your site
2. Enable WP_Debug
// Enable WP_DEBUG mode
define( 'WP_DEBUG', true );
// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );
// Enable display of errors and warnings
define( 'WP_DEBUG_DISPLAY', true );3. Temporarily deactivate all unnecessary plugins/themes
Contacting the Gaucho Plugins Support Team
Advanced Troubleshooting
Last updated