Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. /**
  2. *Reduce the strength requirement on the woocommerce password.
  3. *
  4. * Strength Settings
  5. * 3 = Strong (default)
  6. * 2 = Medium
  7. * 1 = Weak
  8. * 0 = Very Weak / Anything
  9. */
  10. function reduce_woocommerce_min_strength_requirement( $strength ) {
  11. return 1;
  12. }
  13. add_filter( 'woocommerce_min_password_strength', 'reduce_woocommerce_min_strength_requirement' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement