Skip to content

Instantly share code, notes, and snippets.

@tdtgit
Last active April 16, 2018 06:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tdtgit/2aee9151be131a7225dacfda5419d3ac to your computer and use it in GitHub Desktop.
Save tdtgit/2aee9151be131a7225dacfda5419d3ac to your computer and use it in GitHub Desktop.
/**
* Disable zxcvbn.min.js on WordPress loading
*/
function deregister_or_dequeue_scripts() {
wp_dequeue_script('wc-password-strength-meter');
}
add_action('wp_print_scripts', 'deregister_or_dequeue_scripts', 20);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment