Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter MattiaConfalonieri

    (@mattiaconfalonieri)

    the problem is this function

    add_action('wp_login_failed', 'wma_login_fail');
    
    function wma_login_fail($username){
        // Get the reffering page, where did the post submission come from?
    
        if (isset($_SERVER['HTTP_REFERER'])) {
    
            $referer = parse_url($_SERVER['HTTP_REFERER']);
        	$referer= '//'.$referer['host'].''.$referer['path'];
    
            // if there's a valid referrer, and it's not the default log-in screen
            if(!empty($referer) && !strstr($referer,'wp-login') && !strstr($referer,'wp-admin')){
                // let's append some information (login=failed) to the URL for the theme to use
                wp_redirect($referer . '?login=failed');
            exit;
            }
        }
    }

    That overwrite the error show into the default account page of woocommerce

    Plugin Author WP Fortune

    (@bpluijms)

    Hello Mattia,

    Thank you for reporting this.

    We’re going to look into this and will update the plugin as soon as possible.

    Best regards,
    Bart

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘No login error’ is closed to new replies.