Skip to content

Instantly share code, notes, and snippets.

@mikeyarce
Forked from WPprodigy/functions.php
Created January 27, 2016 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeyarce/bd6d06373998d8a63c10 to your computer and use it in GitHub Desktop.
Save mikeyarce/bd6d06373998d8a63c10 to your computer and use it in GitHub Desktop.
Remove the password strength meter from WooCommerce checkout
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 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment