• Hello, is there any plugin or default way to adjust our password strength? For example: setting password length to be at least 8 characters long but no need to combine special characters or upper/lowercase. Any help would be appreciate.

    • This topic was modified 2 years, 5 months ago by Jan Dembowski.

    The page I need help with: [log in to see the link]

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

    You can use below code for that:

    function method_remove_wp_default_password_meter() {
    	wp_dequeue_script( 'wc-password-strength-meter' );
    }
    add_action( 'wp_print_scripts', 'method_remove_wp_default_password_meter', 100 ); 

    Note : But with the use of this it will remove password strength from everywhere also it is not secure thing to update that.

    Hope this helps!

    Thanks.

    Thread Starter sopfood

    (@sopfood)

    Hi,

    Thanks for the codes. May I know if this coding can at least adjust the password to have at least 8 chars?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Plugin or default way to adjust our password strength’ is closed to new replies.