Looking for a way to remove the WordPress login shake effect? This snippet will remove the shake effect that occurs after a login error.
Instructions:
All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin:
function wps_login_error() { remove_action('login_head', 'wp_shake_js', 12); } add_action('login_head', 'wps_login_error');
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: How to Properly Create a Custom Login Page in WordPress (Step by Step).
@JOESEPH THank you same issue get solved by your comment
I also use it, but if dont know, why its still shaking.
I also disable some firewall and blocking stuff in my htaccess, but sill shaking.
Do you have any ideas how I could figure out the reason?
Best regards
Andreas
@Andreas: The code mentioned in the post won’t work with newer versions of WordPress. Instead, simply change login_head to login_footer
Ahhh. Nice one! Thank you.
Works a charm! Thank you!