Skip to content

Instantly share code, notes, and snippets.

@grola
Created February 1, 2018 19:32
Embed
What would you like to do?
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