Title: Password Strength
Last modified: October 3, 2019

---

# Password Strength

 *  Resolved [joelreed33](https://wordpress.org/support/users/joelreed33/)
 * (@joelreed33)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/password-strength-14/)
 * Hi, how do I change the password strength settings on LearnPress? This is the
   register section that comes up when you try get into the profile page without
   being logged in. The password strength is way too difficult and will push away
   customers. How can I change this? Thanks. (refer to the image)
 * [https://drive.google.com/file/d/12Acly32nFdxmDvgXBCEY6fgplUzCDf6o/view?usp=sharing](https://drive.google.com/file/d/12Acly32nFdxmDvgXBCEY6fgplUzCDf6o/view?usp=sharing)

Viewing 1 replies (of 1 total)

 *  [esmail ebrahimi](https://wordpress.org/support/users/ee_persian/)
 * (@ee_persian)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/password-strength-14/#post-12046570)
 * a dirty way :
    go to file inc/class-lp-forms-handler.php find this function -
   > public static function register_validate_field remove this lines from function:
 *  if ( ! preg_match( “#[a-zA-Z]+#”, $value ) ) {
    throw new Exception( __( ‘Password
   must include at least one letter!’, ‘learnpress’ ), 120 ); }
 *  if ( ! preg_match( “#[A-Z]+#”, $value ) ) {
    throw new Exception( __( ‘Password
   must include at least one capitalized letter!’, ‘learnpress’ ), 125 ); }
 *  if ( ! preg_match( “#[0-9]+#”, $value ) ) {
    throw new Exception( __( ‘Password
   must include at least one number!’, ‘learnpress’ ), 125 ); }
 *  if ( ! preg_match( ‘#[~!@\#$%^&*()]#’, $value ) ) {
    throw new Exception( __(‘
   Password must include at least one of these characters ~!@#$%^&*() !’, ‘learnpress’),
   125 ); }

Viewing 1 replies (of 1 total)

The topic ‘Password Strength’ is closed to new replies.

 * ![](https://ps.w.org/learnpress/assets/icon-256x256.gif?rev=3254420)
 * [LearnPress - WordPress LMS Plugin for Create and Sell Online Courses](https://wordpress.org/plugins/learnpress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/learnpress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/learnpress/)
 * [Active Topics](https://wordpress.org/support/plugin/learnpress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/learnpress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/learnpress/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [esmail ebrahimi](https://wordpress.org/support/users/ee_persian/)
 * Last activity: [6 years, 6 months ago](https://wordpress.org/support/topic/password-strength-14/#post-12046570)
 * Status: resolved