Skip to content

Instantly share code, notes, and snippets.

@mahbubme
Last active October 4, 2016 21:44
Show Gist options
  • Save mahbubme/a0af1a07889717f1106f to your computer and use it in GitHub Desktop.
Save mahbubme/a0af1a07889717f1106f to your computer and use it in GitHub Desktop.
Remove WordPress default password strength meter
<?php
function remove_wc_password_meter() {
wp_dequeue_script( 'wc-password-strength-meter' );
}
add_action( 'wp_print_scripts', 'remove_wc_password_meter', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment