Voeg deze code toe aan de functions.php van je thema of de plugin Code Snippets

/**
* Remove password strength check.
*/
function iconic_remove_password_strength() {
wp_dequeue_script( 'wc-password-strength-meter' );
}
add_action( 'wp_print_scripts', 'iconic_remove_password_strength', 10 );