Site icon Experience Wordpress Developer Online – Design Develop and Maintenance Support

Remove the password strength meter on the checkout page

Password Strength Meter forces users to choose or use strong password on checkout page, when customer want to create new account. Some customers use one password to create account and store that password but average customers would not like to use different password for different accounts.

Mostly customers want to use same password for all accounts which is easily to be remember, at that point Strong passwords Meter create an issue with customers.This resulted in less revenue for businesses, as customers would leave the website without purchasing anything.

So if you want to increase your revenue for business, You need to completely remove the strength meter and restore the checkout process as it was before.

To do this, Add this code in your theme’s functions.php file of your active child theme (or theme) and Save the file.

function remove_password_strength() {
	if ( wp_script_is( 'wc-password-strength-meter', 'enqueued' ) ) {
		wp_dequeue_script( 'wc-password-strength-meter' );
	}
}
add_action( 'wp_print_scripts', 'remove_password_strength', 100 );
Exit mobile version