Skip to content

Instantly share code, notes, and snippets.

@davidperezgar
Forked from WPprodigy/functions.php
Created July 6, 2016 08:41
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 davidperezgar/3bb00f2a3cd2650c1963ea2ac154b7de to your computer and use it in GitHub Desktop.
Save davidperezgar/3bb00f2a3cd2650c1963ea2ac154b7de 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