Home › Forums › WoodMart support forum › Register An Account
Register An Account
- This topic has 7 replies, 3 voices, and was last updated 7 years ago by
Elise Noromit.
-
AuthorPosts
-
May 7, 2018 at 4:00 am #56383
ckluong3ParticipantHi, How I can check the customer’s details after the customer register an account from the site?
Where is all the customer’s data stored at?
Please advise, thanks.
Attachments:
You must be logged in to view attached files.May 7, 2018 at 6:52 am #56397
Elise NoromitMemberHello,
Please navigate to Dashboard > Users
You will see all the users admin, customer and their data.
Best regards
May 7, 2018 at 9:43 am #56416
ckluong3ParticipantHi, May I know where can I edit the password setting?
I would like to edit the password’s length, and rules.
Please advise, thanks.
Attachments:
You must be logged in to view attached files.May 7, 2018 at 11:23 am #56430
Eric WatsonParticipantHello,
Try to add the following PHP code snippet to the child theme functions.php file to do this
add_filter( 'password_hint', 'woodmart_change_password_hint' ); function woodmart_change_password_hint($hint) { return "My new password hint"; }
Kind Regards
XTemos StudioMay 7, 2018 at 2:22 pm #56457
ckluong3ParticipantHi, I suppose the above given code is for the pop up hint box content.
As the current minimum password length is 12 character long, May I know how can I reduce it to 8 instead?
Please advise, thanks.
May 7, 2018 at 2:23 pm #56458
Eric WatsonParticipantTry to add the following PHP code snippet to the child theme functions.php file to do this
/** *Reduce the strength requirement on the woocommerce password. * * Strength Settings * 3 = Strong (default) * 2 = Medium * 1 = Weak * 0 = Very Weak / Anything */ function woodmart_reduce_woocommerce_min_strength_requirement( $strength ) { return 2; } add_filter( 'woocommerce_min_password_strength', 'woodmart_reduce_woocommerce_min_strength_requirement' );
Kind Regards
XTemos StudioMay 7, 2018 at 3:28 pm #56467
ckluong3ParticipantHi,
1. The code can paste into any place within the functions.php ?
2. The above code is it completed or I need to amend? As I needed the password length in 8 characters but the given code only 3 ?
Please advise, thanks.
May 7, 2018 at 6:15 pm #56486
Elise NoromitMemberHello,
You can paste the code in any place of the file.
WooCommerce provides this code, you can change values as per your needs.
Best Regards
-
AuthorPosts
- You must be logged in to create new topics. Login / Register