• Resolved lapapo

    (@lapapo)


    Hello,
    Is there an option to remove the password strength requirement when someone registers on the site?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi lapapo,

    you can use this snippet code in functions.php in the child theme

    //Remove password strength check
    function iconic_remove_password_strength() {
        wp_dequeue_script( 'wc-password-strength-meter' );
    }
    add_action( 'wp_print_scripts', 'iconic_remove_password_strength', 10 );
    Thread Starter lapapo

    (@lapapo)

    Amazing! Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Password Strength’ is closed to new replies.