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' );
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 7 years, 10 months ago by
alex586.
-
This reply was modified 7 years, 10 months ago by
alex586.