Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brunoalvarenga/714b723d94fdbc04c3d4b4821d5451a2 to your computer and use it in GitHub Desktop.
Save brunoalvarenga/714b723d94fdbc04c3d4b4821d5451a2 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