Voeg deze code toe aan function.php van je thema of Code Snippets.
1 2 3 4 5 6 7 |
/** * Remove password strength check. */ function lamper_remove_password_strength() { wp_dequeue_script( 'wc-password-strength-meter' ); } add_action( 'wp_print_scripts', 'lamper_remove_password_strength', 10 ); |