Skip to content

Instantly share code, notes, and snippets.

@woogist
Last active December 25, 2015 05:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save woogist/6925225 to your computer and use it in GitHub Desktop.
Save woogist/6925225 to your computer and use it in GitHub Desktop.
Place in your theme’s functions.php file or custom plugin. Will only allow customers to checkout is their cart total is greater than 50.
add_action( 'woocommerce_checkout_process', 'wc_minimum_order_amount' );
function wc_minimum_order_amount() {
global $woocommerce;
$minimum = 10;
if ( $woocommerce->cart->get_cart_total() < $minimum ) {
$woocommerce->add_error( sprintf( 'You must have an order with a minimum of %s to place your order.' , $minimum ) );
}
}
@sandovalg
Copy link

I am receiving an error on line 6 of your code unexpected syntax ";" for the 6 line. Any thoughts? In this particular gist the minimum is set to 10 correct?

@raramuridesign
Copy link

Line 6
should look like this

if ( $woocommerce->cart->get_cart_total() < $minimum ) {

The semi-colon should be removed.

@BFTrick
Copy link

BFTrick commented Feb 25, 2014

@raramuridesign - Yup. I just went in and fixed this. Thanks!

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