• Resolved Saurabh Jain

    (@saurabhj91)


    Hi Team,

    Could you please help me to deactivate strong password on vendor registration page?

    I have done it for woo-commerce and WP using below code, but it is not working on vendor registration page.

    //make password weak
    add_action( 'wp_print_scripts', 'DisableStrongPW', 100 );
    
    function DisableStrongPW() {
        if ( wp_script_is( 'wc-password-strength-meter', 'enqueued' ) ) {
            wp_dequeue_script( 'wc-password-strength-meter' );
        }
    }
    • This topic was modified 7 years, 10 months ago by Saurabh Jain.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How can i deactivate Strong Password?’ is closed to new replies.