Last active
October 4, 2016 21:44
-
-
Save mahbubme/a0af1a07889717f1106f 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