Skip to content

Instantly share code, notes, and snippets.

@rickslayer
Created September 12, 2018 23:43
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 rickslayer/67d9e0eae9eceadacf74cb5512fff052 to your computer and use it in GitHub Desktop.
Save rickslayer/67d9e0eae9eceadacf74cb5512fff052 to your computer and use it in GitHub Desktop.
Remove strength password register user woocommerce
// Remove strength password register woocommerce
function fa_remove_password_strength() {
wp_dequeue_script( 'wc-password-strength-meter' );
wp_deregister_script( 'wc-password-strength-meter' );
}
add_action( 'wp_enqueue_scripts', 'fa_remove_password_strength', 99999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment