Home Forums WC Vendors Free Support WooCommerce 2.5.0+ password strength

NOTICE: We've Moved to a Ticket System for Support

As of August 31, 2017 (12am EST) our support forums will be retired (read-only), and we will be moving to a support ticket system.  This will allow us to better organize and answer support requests, and provide a more personalized experience as we assist our customers.

For the time being, we will leave our forums open for reading and learning while we work on creating a more robust Knowledge Base for everyone to use.

If you are a WC Vendors Pro customer please open a support ticket here. 

If you are a WC Vendors user please open a support ticket on the Wordpress.org forums.

The information on this forum is outdated and in most instances no longer relevant. Please be sure to check our documentation for the most up to date information.

https://docs.wcvendors.com/

Thank you to all of our customers!

 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #22055
    Jasdeep
    Participant

    Just wondering if there is a way to bypass this strength checker on the password. I have to enter a ridiculous password to be able to register. Is there a way to use a weaker password??

    #22079
    WC Vendors Support
    Participant
    #22126
    Jasdeep
    Participant

    Relieved to see this is possible! Can you tell me what to do with that code? (Sorry for noob question)

    #22132
    Anna
    Member

    You would put :

    /* WC Vendors Disable WooCommerce Password Strength Requirement */
    function wcvendors_remove_password_strength() {
    if ( wp_script_is( ‘wc-password-strength-meter’, ‘enqueued’ ) ) {
    wp_dequeue_script( ‘wc-password-strength-meter’ );
    }
    }
    add_action( ‘wp_print_scripts’, ‘wcvendors_remove_password_strength’, 100 );

    into the functions.php file of your child theme. Put it after the <? php at the top of the page, and before the ?> at the bottom of the page.

    #49718
    Randy Maningas
    Participant

    Is there a way to have the meter to at least show the customer their strength but allow them to use any password they want?

    #49755
    Anna
    Member

    You’d have to custom build that. It’d likely involve js.
    Search (google) and see if someone has shared a script for this– that’s be my best advice. That is a WooCommerce thing, not WC Vendors.

    You can set it to be a different strength by default if you use this. Change the return number to the strength that you want to be the default requirement. This would go in your theme functions.php:
    https://gist.github.com/fervous/4f379cc3d0a2af6c09c47112c3c54b6f

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘WC Vendors Free Support’ is closed to new topics and replies.