• I’ve had a few people tell me that the emails are not sent at all when trying to log in and the user is only using Email as their method.

    It says email has been sent, but it hasn’t.

    using the “try another way” and clicking Email does work, but by default it’s not working.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter technicalx

    (@technicalx)

    I think I know why this failing.

    The 2FA “Your verification code” email is only triggered for default login pages, not for /my-account/ woocommerce login.

    Even though the 2FA plugin redirects to the 2FA login screen and says that an email was sent, but it wasn’t sent!

    • This reply was modified 1 year, 5 months ago by technicalx.
    Thread Starter technicalx

    (@technicalx)

    the line in handle() thinks the email has been sent when it hasn’t.
    $limiter = Wp2sv_Limit::forUser($this->model);

    returns 1

    Thread Starter technicalx

    (@technicalx)

    I’m adding a hackfix in Wp2sv_Email.php line 48

    if ($_SERVER[‘REQUEST_URI’] == ‘/my-account/’) {
    // hackfix for wp2sv to work with WooCommerce login.
    $sent = 0;
    }

    some hackfix code..
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘customers complaing about emails not sending when email is default method’ is closed to new replies.