Minimum Order Amount IF Local PickUp not selected
-
Hello,
I followed the instruction of this page https://docs.woocommerce.com/document/minimum-order-amount/ to set a minimum amount.
How can I add this minimum amount only if the Local PickUp has not been selected as option?Following the code of the documentation something like this…
function wc_minimum_order_amount() {
// Set this variable to specify a minimum order value
$minimum = 50;if ( WC()->cart->total < $minimum ) && (local_pickup is not true) {
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Minimum Order Amount IF Local PickUp not selected’ is closed to new replies.