Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@woogists
Last active November 18, 2022 22:30
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save woogists/9a8f240c37d488783028a43a2416a647 to your computer and use it in GitHub Desktop.
Save woogists/9a8f240c37d488783028a43a2416a647 to your computer and use it in GitHub Desktop.
Set a minimum order amount for checkout
/**
* Set a minimum order amount for checkout
*/
add_action( 'woocommerce_checkout_process', 'wc_minimum_order_amount' );
add_action( 'woocommerce_before_cart' , 'wc_minimum_order_amount' );
function wc_minimum_order_amount() {
// Set this variable to specify a minimum order value
$minimum = 50;
if ( WC()->cart->total < $minimum ) {
if( is_cart() ) {
wc_print_notice(
sprintf( 'Your current order total is %s — you must have an order with a minimum of %s to place your order ' ,
wc_price( WC()->cart->total ),
wc_price( $minimum )
), 'error'
);
} else {
wc_add_notice(
sprintf( 'Your current order total is %s — you must have an order with a minimum of %s to place your order' ,
wc_price( WC()->cart->total ),
wc_price( $minimum )
), 'error'
);
}
}
}
@AndrewSepic
Copy link

AndrewSepic commented May 25, 2018

The sprintf() parameters are reversed here.. wc_price($minimum), and wc_price(WC()->cart->total) should be reversed in their order.

@rakattack
Copy link

I sell promotional products and need to set minimum quantity orders for each product I add into WooCommerce. Will this code work for that? If so, what is the correct final code and where would I insert into WOO for it to allow me to set for each product? Any help would be great!

@veropiza
Copy link

how can I omit a category in this minimum ?

@Niavl
Copy link

Niavl commented Mar 27, 2020

Works great.
How to exclude shipping fees from order amount ?

@krisdottine
Copy link

I'd also like to know how to exclude shipping fees, is that possible?

@dadadmin3
Copy link

Is there a way to apply this to a single product? I have a product that has add ons, and they have to purchase a specific amount worth of add ons in addition to the base price. It only will affect one specific product, not the whole cart.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment