• Resolved claudia98

    (@claudia98)


    Hello,

    I’m trying to disable the strenght password meter when creating a new account in woocommerce, and at first it worked with the code below but now this is not working. It may be due to an update? How can we do this?

    `function ayudawp_quitar_comprobar_clave() {
    if ( wp_script_is( ‘wc-password-strength-meter’, ‘enqueued’ ) ) {
    wp_dequeue_script( ‘wc-password-strength-meter’ );
    }
    }
    add_action( ‘wp_print_scripts’, ‘ayudawp_quitar_comprobar_clave’, 100 );

    • This topic was modified 2 years, 4 months ago by claudia98.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Unable to disable the strenght password meter’ is closed to new replies.