• Dear developer,
    we found a visual bug in a reset password interface after coming from email link to website.
    it showing the below warning message on reset screen.
    ERROR: Please solve Captcha correctly
    A screenshot provided for more details inspection.
    Error on reset password link from email

    Thank you
    Golam Mostofa

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter golammostofa31188

    (@golammostofa31188)

    Not a perfect solution but hide this way.
    write this to your theme, functions.php

    
    

    add_filter( ‘login_errors’, function( $errors ){

    if (strpos($errors, ‘Captcha’) !== false) {
    ?>
    <style type=”text/css”>
    #login_error{
    display: none !important;
    }
    </style>
    <?php
    return ”;
    }else{
    return $errors;
    }

    }
    );

Viewing 1 replies (of 1 total)
  • The topic ‘Bug on Reset Password Interface from Email Link’ is closed to new replies.