Hi @nicorel,
Can you tell me if you updated from previous version or this is first time you installed the plugin?
Blank screen usually means there’s fatal error going on somewhere, can you enable debug log in your wp-config.php 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 all the pages that show white screen for you and this should create debug.log file in your wp-content folder that could tell us what is going on.
Can you please upload it to any file sharing service and paste the download link here so we can check it out?
Cheers,
Predrag