Skip to content

Instantly share code, notes, and snippets.

@BurlesonBrad
Forked from TimBHowe/functions.php
Created March 10, 2016 21:34
Show Gist options
  • Star 28 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save BurlesonBrad/c89a825a64732a46b87c to your computer and use it in GitHub Desktop.
Save BurlesonBrad/c89a825a64732a46b87c to your computer and use it in GitHub Desktop.
Reduce or remove WooCommerce 2.5 minimum password strength requirement for creating a user account. Warning: Use at your own risk.
<?php
/**
*Reduce the strength requirement on the woocommerce password.
*
* Strength Settings
* 3 = Strong (default)
* 2 = Medium
* 1 = Weak
* 0 = Very Weak / Anything
*/
function reduce_woocommerce_min_strength_requirement( $strength ) {
return 2;
}
add_filter( 'woocommerce_min_password_strength', 'reduce_woocommerce_min_strength_requirement' );
@seankmchenry
Copy link

Thanks for this!

@CatinhoCR
Copy link

Lovely. Thanks bud.

@Arsintorabi
Copy link

thank you

@jonathancrowell
Copy link

jonathancrowell commented Jun 19, 2017

Is it possible to give me rundown on what the difference is between 3, 2, and 1. Is it just character length or something else? I have a popup instructing the user about password strength that I'd like to update with the correct info. thanks for this though, just what I was looking for

@ajayghaghretiya
Copy link

Thank you

@ncesar
Copy link

ncesar commented Mar 12, 2018

Thanks brother!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment