The WSOD usually comes from PHP memory limit — not plugins.
✔ Fix
Add to wp-config.php:
define('WP_MEMORY_LIMIT', '256M');
Default is often 40M → insufficent.
💡 Bonus
Enable debug without exposing logs publicly:
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
