• I have installed woocommerce and woocommerce simple registration plugin. On registration page password strength meter is not working, because of this, submit button also not working.
    Same condition occured on lost password page.
    Please help me to resolve this issue as soon as possible.
    Any help will be greatful.

Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter gpriya9876

    (@gpriya9876)

    Wordpress version : 4.6.1
    woocommerce version : 2.6.7
    woocommerce simple registration : 1.2.0

    Please share the website link where you are facing problem.

    Thread Starter gpriya9876

    (@gpriya9876)

    https://198.1.95.93/~devgoedkoopbelte/my-account/?action=register

    • This reply was modified 8 years, 4 months ago by gpriya9876.
    Thread Starter gpriya9876

    (@gpriya9876)

    Please help to solve the issue as soon as possible.

    Thanks for sharing the link.

    Few questions:

    1. Have you written any custom js or php code to play with password strength meter?
    2. What is the need for this js?
    Thread Starter gpriya9876

    (@gpriya9876)

    Yes, I have written custom js to resolve this issue but this was not working.
    Can you please suggest any other option to resolve this problem.

    Thread Starter gpriya9876

    (@gpriya9876)

    I have removed custom.js in the site but still it is not working. The password field is not taking any type of password as strong.

    I tried to replicate this by installing some of the plugins which you are using. But I could not replicate it. I would suggest taking basic steps like, using default theme with only WooCommerce as active plugin. Then activate other plugins one by one and keep testing. That will help figure out what is creating conflict – like whether its a theme or any other plugin.

    Thread Starter gpriya9876

    (@gpriya9876)

    Is this because of plugin confliction?
    I have checked by deactivate all plugins and activate one by one but issue not resolved.
    Any other option to resolve this issue, will be helpful.

    As I could not reproduce this even after installing some of the plugins (except paid plugins like WPML etc.) which you are using, Its difficult to say exactly what could be causing this. I think you may try disabling password strength checker (if not needed) using below code. Place this in your functions.php file:

    function wc_disable_password_strength_meter() {
    	if ( wp_script_is( 'wc-password-strength-meter', 'enqueued' ) ) {
    		wp_dequeue_script( 'wc-password-strength-meter' );
    	}
    }
    add_action( 'wp_print_scripts', 'wc_disable_password_strength_meter', 100 );

    OR

    If something is not working after an update, a likely cause is an outdated or non compatible plugin or theme. The best thing to do is to narrow down the cause. To do this you can temporarily:

    • Switch to a default WordPress theme (Twenty Twelve) and test again
    • Disable all other plugins except for WooCommerce itself, retest, and re-activate plugins until the issue occurs. This will help you find the culprit.
    • This reply was modified 8 years, 4 months ago by Prasad Nevase. Reason: edited the function name
    Thread Starter gpriya9876

    (@gpriya9876)

    This code is not working.
    And the password strength meter is working when I selects parent theme.
    So, what should I do?

    Then there is something in child theme itself. Check the custom js files or functions.php file. There must be something in it.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘submit button disabled in woocommerce registration and lost password page’ is closed to new replies.