WPSurfer.com

How to Disable Password Strength Meter in WordPress

Published on September 24, 2022 | Updated on October 23, 2024

The Password Strength Meter in WordPress is a feature that evaluates the strength of user passwords during registration, login, or profile updates. It provides feedback on how secure the password is, encouraging users to create stronger, more complex passwords for improved security.

You can disable the password strength meter using a plugin or by adding custom code.

function remove_password_strength() {
    wp_dequeue_script( 'wc-password-strength-meter' );
}
add_action( 'wp_print_scripts', 'remove_password_strength', 10 );
Manuel Campos

Manuel Campos

I am José Manuel. I am writing about things I know and things that I am learning about WordPress. I hope you find the content of this blog useful.