Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #593866

    Hi,

    I just noticed that the register form doesn’t work. It always says “the password is weak or very weak and the button “register is not active.
    Please have a look. I appreciate.

    #593894

    isn’t there a checkbox “yes i know – and go on with weak password”

    #593954

    no, I don’t see this checkbox

    #593958

    what Register do you mean – that of a new user in wordpress?
    Or do you have a plugin installed for that new users

    #595073

    Hey!

    Please add following code to Functions.php file in Appearance > Editor

    function avia_remove_password_strength() {
    	if ( wp_script_is( 'wc-password-strength-meter', 'enqueued' ) ) {
    		wp_dequeue_script( 'wc-password-strength-meter' );
    	}
    }
    add_action( 'wp_print_scripts', 'avia_remove_password_strength', 100 );

    Regards,
    Yigit

    #597096

    Thank you . it solved the problem. There is no password strength check now.

    #597479

    Hi,

    Great, glad we could help :-)

    Regards,
    Rikard

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.