• Resolved alex586

    (@alex586)


    Hello,

    Is it possible to remove the password strength meter on the registeration page ? (I Know isn’t recommanded).

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    
    function remove_password_strength_meter_from_registration() {
        tml_remove_form_field( 'register', 'indicator' );
        tml_remove_form_field( 'register', 'indicator_hint' );
    }
    add_action( 'init', 'remove_password_strength_meter_from_registration' );
    
    Thread Starter alex586

    (@alex586)

    Thank you Jeff

    Thread Starter alex586

    (@alex586)

    How can I remove also this on the “Reset Password” page ?

    Thank you

    Edit : Found !

    
    function remove_password_strength_meter_from_registration() {
        tml_remove_form_field( 'register', 'indicator' );
        tml_remove_form_field( 'register', 'indicator_hint' );
        tml_remove_form_field( 'resetpass', 'indicator' );
        tml_remove_form_field( 'resetpass', 'indicator_hint' );
    }
    add_action( 'init', 'remove_password_strength_meter_from_registration' );
    
    • This reply was modified 6 years, 6 months ago by alex586.
    • This reply was modified 6 years, 6 months ago by alex586.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove password strenght meter’ is closed to new replies.