• Resolved user10101

    (@user10101)


    Hello – 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?

Viewing 1 replies (of 1 total)
  • Plugin Author lucasbustamante

    (@lucasbustamante)

    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']));

Viewing 1 replies (of 1 total)
  • The topic ‘make password not case sensitive?’ is closed to new replies.