-
-
Save neilgee/0b42409f62a9f98b2a7d346350804a2f to your computer and use it in GitHub Desktop.
Remove the password strength meter from WooCommerce checkout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'wp_print_scripts', 'themeprefix_remove_password_strength', 100 ); | |
// Remove password strength script | |
function themeprefix_remove_password_strength() { | |
if ( wp_script_is( 'wc-password-strength-meter', 'enqueued' ) ) { | |
wp_dequeue_script( 'wc-password-strength-meter' ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
remove-password-strength.php