Remove disabling Update Cart button on WooCommerce cart page

/*
 * This will make Update Cart button always enabled, even if no changes were made in cart.
 */
function remove_disabling_update_cart_button_on_cart() {
	if ( is_cart() ) {
		echo "";
	}
}
// Add script to footer
add_action( 'wp_footer', 'remove_disabling_update_cart_button_on_cart', PHP_INT_MAX );

Leave a Comment