Home Forums WoodMart support forum Register An Account

Register An Account

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #56383

    ckluong3
    Participant

    Hi, 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.
    #56397

    Hello,

    Please navigate to Dashboard > Users

    You will see all the users admin, customer and their data.

    Best regards

    #56416

    ckluong3
    Participant

    Hi, 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.
    #56430

    Eric Watson
    Participant

    Hello,

    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 Studio

    #56457

    ckluong3
    Participant

    Hi, 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.

    #56458

    Eric Watson
    Participant

    Try 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 Studio

    #56467

    ckluong3
    Participant

    Hi,

    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.

    #56486

    Hello,

    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

Viewing 8 posts - 1 through 8 (of 8 total)