Home › Forums › WoodMart support forum › login / register page title problem › Reply To: login / register page title problem
February 5, 2018 at 7:13 am
#37429
Artem Temos
Keymaster
Try to use this code snippet to remove it completely
/**
* Remove password strength check.
*/
function wood_remove_password_strength() {
wp_dequeue_script( 'wc-password-strength-meter' );
}
add_action( 'wp_print_scripts', 'wood_remove_password_strength', 10 );