Если вас при неудачной авторизации с попап формы Elementor отправляет на стандартную форму авторизации WordPress
то делаем бекап файла functions и
В файл functions добавляем
//add hook to redirect the user back to the elementor login page if the login failed
add_action( 'wp_login_failed', 'elementor_form_login_fail' );
function elementor_form_login_fail( $username ) {
$referrer = $_SERVER['HTTP_REFERER']; // where did the post submission come from?
// if there's a valid referrer, and it's not the default log-in screen
if ( !empty($referrer) && !strstr($referrer,'wp-login') && !strstr($referrer,'wp-admin') ) {
//redirect back to the referrer page, appending the login=failed parameter and removing any previous query strings
//maybe could be smarter here and parse/rebuild the query strings from the referrer if they are important
wp_redirect(preg_replace('/\?.*/', '', $referrer) . '/?login=failed' );
exit;
}
}