HI
this is a bug the author need to fix it soon, it was happened when a the 3rd party plugin hook to authenticate built of WP and return a specific error (for example: Error please retry Captcha ). but the plugin always return an error message “Password is incorrect. Please try again.”
replace this code :
//start is 54 line code
$user = get_user_by( 'login', $user_name );
......
//end is 75 line code
with
$user = apply_filters( 'authenticate', null, $authenticate, $args['user_password'] );
if (is_wp_error( $user )) {
UM()->form()->add_error( $user->get_error_code(), $user->get_error_message() );
} else {
UM()->login()->auth_id = username_exists( $user_name );
}
I hope this tip will improve the plugin