-
-
Save brunoalvarenga/714b723d94fdbc04c3d4b4821d5451a2 to your computer and use it in GitHub Desktop.
Remove WordPress default password strength meter
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
<?php | |
function remove_wc_password_meter() { | |
wp_dequeue_script( 'wc-password-strength-meter' ); | |
} | |
add_action( 'wp_print_scripts', 'remove_wc_password_meter', 100 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment