Skip to content

Instantly share code, notes, and snippets.

@rynaldos-zz
Created July 21, 2016 19:01
Show Gist options
  • Save rynaldos-zz/7484391c35eef36a3fe65985d5007d5d to your computer and use it in GitHub Desktop.
Save rynaldos-zz/7484391c35eef36a3fe65985d5007d5d to your computer and use it in GitHub Desktop.
Password Strength Disable
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