WPSlash

Disable Today from Delivery or Pickup Option on Checkout

Thursday October 22, 2020

The following code snippets will disable Today option from Delivery or Pickup date options

For Pickup

add_filter('woofood_enable_today_date_pickup', function() {
	
	
	return false;
});

For Delivery

add_filter('woofood_enable_today_date_delivery', function() {
	
	
	return false;
});

Copy and paste the following snippets under your functions.php on your child theme .

Leave a Comment

Your email address will not be published. Required fields are marked *