Title: Lower password security when register
Last modified: August 31, 2016

---

# Lower password security when register

 *  Resolved [depaq67](https://wordpress.org/support/users/depaq67/)
 * (@depaq67)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/lower-password-security-when-register/)
 * If there a way to lower the password difficulty when you register? Now it is 
   medium, but I would like it to be easy (not “very easy”) as I want it to be easier
   and faster for users to register to my website.
 * Thank you very much,
    Derek
 * [https://wordpress.org/plugins/dc-woocommerce-multi-vendor/](https://wordpress.org/plugins/dc-woocommerce-multi-vendor/)

Viewing 10 replies - 1 through 10 (of 10 total)

 *  [DualCube](https://wordpress.org/support/users/dualcube/)
 * (@dualcube)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/lower-password-security-when-register/#post-7235369)
 * Hello Derek,
 * Thanks for reaching out. This is a change that WooCommerce added in version 2.5X
   and since then many users have demanded an option to control/disable this. So
   sooner or later WooCommerce would provide this option. There are lots of options
   available to configure it before WooCommerce adds a settings panel but all of
   them involve coding.
 * Here are few of those for your reference-
 * 1. [https://wordpress.org/support/topic/please-give-an-option-to-disable-password-strength-checker?replies=19](https://wordpress.org/support/topic/please-give-an-option-to-disable-password-strength-checker?replies=19)
 * 2. [https://github.com/woothemes/woocommerce/issues/10201](https://github.com/woothemes/woocommerce/issues/10201)
 * I am yet to check solutions offered in the above-shared links.
 * Since your requirement is a bit different( you need to lower the security rather
   than completely disable the security meter) you would need to define the parameter
   for medium level security and then get it implemented. That would require a developer’s
   help. Instead, if you want to disable the security check, I can check the solutions
   from the threads above and help you with one exact solution.
 * Let me know if that would helps.
 * Regards,
    Sandeep
 *  Thread Starter [depaq67](https://wordpress.org/support/users/depaq67/)
 * (@depaq67)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/lower-password-security-when-register/#post-7235370)
 * Well, completely disable the security would be a good alternative for the moment
   as I find it a bit long for people who doesn’t normally use these kind of password.
   I rely on speed for users to register and buy products.
    I’ll check the links
   you provided see if I can do something. Of course, if you want to help me with
   this I will be more than happy !
 * Thank you,
    Derek
 *  [DualCube](https://wordpress.org/support/users/dualcube/)
 * (@dualcube)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/lower-password-security-when-register/#post-7235476)
 * Hi Derek,
 * Thanks for holding patience. I too have gone through the above shared link along
   with the tech team help and found that the very first solution is the best one.
 * To remove the password strength, add the code to your functions.php file and 
   will work:
 * function logi_remove_strength_meter() {
    if (wp_script_is(‘wc-password-strength-
   meter’, ‘done’)) { ?> <script type=”text/javascript”> jQuery(function ($) {
 *  function let_me_sell() {
    $(‘form.checkout input[type=”submit”]’).removeAttr(‘
   disabled’); }
 *  $( document.body )
    .on( ‘keyup’, ‘form.checkout #account_password’, let_me_sell).
   on( ‘change’, ‘form.checkout #createaccount’, let_me_sell ); }); </script> <?
   php } }
 * add_action(‘wp_footer’, ‘logi_remove_strength_meter’, 99);
 * Let me know how this works with your site.
 * Regards,
    Rimpa
 *  [DualCube](https://wordpress.org/support/users/dualcube/)
 * (@dualcube)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/lower-password-security-when-register/#post-7235555)
 * Hi Derek,
 * Hope the above shared code snippet helped you to control the password strength.
   Do reach us if you face any other query or suggestion.
 * Thanks,
    Rimpa
 *  Thread Starter [depaq67](https://wordpress.org/support/users/depaq67/)
 * (@depaq67)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/lower-password-security-when-register/#post-7235556)
 * Yes, everything worked perfectly, I’m waiting for a plugin update so I can lower
   the strenght, but this solution is perfect for now.
 * Thank you very much,
    Derek
 *  [DualCube](https://wordpress.org/support/users/dualcube/)
 * (@dualcube)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/lower-password-security-when-register/#post-7235566)
 * Hi Derek,
 * Just thought to notify that the updated version of WCMp i.e, WC-Marketplace 2.3.6
   is now available.
 * Regards,
    Rimpa
 *  Thread Starter [depaq67](https://wordpress.org/support/users/depaq67/)
 * (@depaq67)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/lower-password-security-when-register/#post-7235571)
 * Ohh great, how can I check the changelog?
 *  [DualCube](https://wordpress.org/support/users/dualcube/)
 * (@dualcube)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/lower-password-security-when-register/#post-7235574)
 * Hi Derek,
 * You can check the changelog on the plugin page i.e, [WC Marketplace](https://wordpress.org/plugins/dc-woocommerce-multi-vendor/),
   you will find the option of “[Changelog](https://wordpress.org/plugins/dc-woocommerce-multi-vendor/changelog/)”
   there.
 * Regards,
    Rimpa
 *  [geeksmithing](https://wordpress.org/support/users/geeksmithing/)
 * (@geeksmithing)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/lower-password-security-when-register/#post-7235619)
 * DualCube, what login page does this affect?
    I am using this login page (…/index.
   php/my-account/) and that code has no effect.
 * Is that because that is a WooCommerce specific page using the shortcodes?
 * Thanks!
 *  [DualCube](https://wordpress.org/support/users/dualcube/)
 * (@dualcube)
 * [10 years ago](https://wordpress.org/support/topic/lower-password-security-when-register/#post-7235621)
 * [@geeksmithing](https://wordpress.org/support/users/geeksmithing/) – Please try
   this code snippet – [http://pastebin.com/VSB1RamH](http://pastebin.com/VSB1RamH).
   Hope this will be helpful.
 * Regards,
    Rimpa

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Lower password security when register’ is closed to new replies.

 * ![](https://ps.w.org/dc-woocommerce-multi-vendor/assets/icon-256x256.gif?rev=
   3314608)
 * [MultiVendorX - WooCommerce Multivendor Marketplace AI Powered Solutions](https://wordpress.org/plugins/dc-woocommerce-multi-vendor/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/dc-woocommerce-multi-vendor/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/)
 * [Active Topics](https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/reviews/)

## Tags

 * [password](https://wordpress.org/support/topic-tag/password/)
 * [register](https://wordpress.org/support/topic-tag/register/)
 * [WCMp](https://wordpress.org/support/topic-tag/wcmp/)

 * 10 replies
 * 3 participants
 * Last reply from: [DualCube](https://wordpress.org/support/users/dualcube/)
 * Last activity: [10 years ago](https://wordpress.org/support/topic/lower-password-security-when-register/#post-7235621)
 * Status: resolved