If you ever enter a wrong username or password when logging into WordPress, then you probably noticed that the login box shakes along with showing you the error that username or password is incorrect. Recently one of our users asked if there was a way to remove the login shake effect in WordPress? Well yes there is. In this article, we will show you how to remove the login shake effect in WordPress.
The login shake feature is added with a JavaScript file that WordPress adds on every login page. All we need to do is remove that JavaScript.
Simply add the following code in your themeβs functions.php file or in a site-specific plugin:
2 remove_action(‘login_head’, ‘wp_shake_js’, 12);
3 }
4 add_action(‘login_head’, ‘wpb_remove_loginshake’);
Removing the login shake effect is an aesthetic decision and should be made completely based on your personal preference. In our opinion, it helps get userβs attention and let them know that there is an error. On our sites, we do not remove the login shake effect.
We hope this article helped you remove the login shake effect in WordPress. If you found this article helpful, then please consider subscribing to our YouTube channel and following us on Twitter.
Source: Eric Martin