Created
January 20, 2016 17:11
-
-
Save WPprodigy/91df9848c2deb469cba0 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
function wc_ninja_remove_password_strength() { | |
if ( wp_script_is( 'wc-password-strength-meter', 'enqueued' ) ) { | |
wp_dequeue_script( 'wc-password-strength-meter' ); | |
} | |
} | |
add_action( 'wp_print_scripts', 'wc_ninja_remove_password_strength', 100 ); |
works! Thx dude.
Thank you so much. :)
Nice
Isn't there a way to lower the strength requirement without totally disabling?
Ninja edit: there is! -> woocommerce_min_password_strength!
add_filter( 'woocommerce_min_password_strength', 'uh_oh_weakpasswords' );
function uh_oh_weakpasswords() {
return 1;
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thx bro'