Bad news, v6.19.0 is on the way, and will break your site, unless we find the problem. The reason is that v6.19.0 adds a meta tags preview feature, which generates all the meta tags on the admin side as well.
The blank screen is actually a good thing – it means there’s a “hard” error, which should be easy to pickup. Something from Thesis must be missing on the back-end.
Remove the debug.log, add the following to wp-config.php, and activate v6.19.0.
define('WP_DEBUG', true);
if ( defined('WP_DEBUG') && WP_DEBUG == true ) {
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors',0);
}
define('NGFB_WP_DEBUG', true);
define('NGFB_HTML_DEBUG', true);
When you get the white page, you should see an error in the debug.log.
Remove the entries from wp-config.php and disable the plugin. I’ll have a look and see if we can fix the Thesis issue.
js.