Replies: 0
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) {