Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 67836

Minimum Order Amount IF Local PickUp not selected

$
0
0

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) {


Viewing all articles
Browse latest Browse all 67836

Trending Articles