Created
February 13, 2021 01:37
-
-
Save MarceloGlez/a777ca2cb4f050bc78ceb72fdc1a4365 to your computer and use it in GitHub Desktop.
Elimina la dureza de la contraseña para nuevo registro en Woocommerce
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Elimina la dureza de la contrasena para nuevos usuarios*/ | |
add_action ('wp_print_scripts', function () { | |
if (wp_script_is ('wc-password-strength-meter', 'enqueued')) | |
wp_dequeue_script ('wc-password-strength-meter'); | |
}, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment