Conversation
supportHello – I have a password with letters and numbers. I am trying to make it not case sensitive so if someone enters tEst or test it will still work. Is this possible?
Yes, you can set your password to “test” and edit the script file. wp-content/plugins/very-simple-password-for-wordpress/very-simple-password-for-wordpress.php Around line 467, replace this line: $pw = sanitize_text_field($_POST['vspfw_password']); With this: $pw = strtolower(sanitize_text_field($_POST['vspfw_password']));
Yes, you can set your password to “test” and edit the script file. wp-content/plugins/very-simple-password-for-wordpress/very-simple-password-for-wordpress.php Around line 467, replace this line: $pw = sanitize_text_field($_POST['vspfw_password']); With this: $pw = strtolower(sanitize_text_field($_POST['vspfw_password']));