Hi @graficavillcom,
Sorry to hear you are having issues with the latest release, Hustle does support PHP 5.6 and I just double checked on my installation with PHP 5.6.3 and couldn’t replicate this issue it’s something else causing this for you.
Blank pages usually mean that there’s a fatal error going on somewhere so it’s something worth investigating.
Can you enable debug log in your wp-config.php file (located in root WP folder) by replacing define(‘WP_DEBUG’, false); with this code:
// Enable WP_DEBUG mode
define('WP_DEBUG', true);
// Enable Debug logging to the /wp-content/debug.log file
define('WP_DEBUG_LOG', true);
// Disable display of errors and warnings
define('WP_DEBUG_DISPLAY', false);
@ini_set( 'display_errors', 0 );
Visit Hustle pages that are blank and this should create debug.log file in your wp-content folder that could tell us what is going on.
Let us know which errors you see there or attach the log to any file sharing service and share the URL here.
Cheers,
Predrag