Skip to content

Instantly share code, notes, and snippets.

@grola
Created February 1, 2018 19:32
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 grola/44cc73f9001ef51e87e9a54882f7011f to your computer and use it in GitHub Desktop.
Save grola/44cc73f9001ef51e87e9a54882f7011f to your computer and use it in GitHub Desktop.
Disable Woocommerce password strength meter
function studiowp_wp_enqueue_scripts() {
wp_dequeue_script( 'wc-password-strength-meter' );
}
add_action( 'wp_enqueue_scripts', 'studiowp_wp_enqueue_scripts', 99999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment