• Resolved kalleaume

    (@kalleaume)


    I have tried creating an alternate registration form, following the steps here. It all works fine, except that the password strength meter does not appear. Is there an extra step required to get the password strength meter on the alternate form?

    • This topic was modified 1 year, 8 months ago by kalleaume.
Viewing 1 replies (of 1 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    Assuming you added the form fields using the same names from the original form, you also need to ensure the javascript is enqueued. You may do so using the tml_script_dependencies filter:

    add_filter( 'tml_script_dependencies', function ( $dependencies ) {
        if ( tml_is_action( 'your-custom-action' ) ) {
            $dependencies[] = 'password-strength-meter';
        }
        return $dependencies;
    } );
Viewing 1 replies (of 1 total)
  • The topic ‘Password strength meter disappears in alternate form’ is closed to new replies.