Hi,
Everytime I install a new upgrade my wordpress security page throws a warning about an active session. So I have to change manually the file /email-verification-for-woocommerce-pro/includes/class-alg-wc-ev-logouts.php line 143 from session_start( );
to
session_start( ['cache_limiter' => 'private','read_and_close' => true,] );
It’s due to the incorrect mechanism for using PHP sessions within plugins or themes when they are using the session_start()
function. They should be closed after reading. Would you include this fix in the next release?
Best regards,
Alejandro