Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Last active December 28, 2016 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kreamweb/6912f6fc6dbde201db6e2f939ad1f87c to your computer and use it in GitHub Desktop.
Save kreamweb/6912f6fc6dbde201db6e2f939ad1f87c to your computer and use it in GitHub Desktop.
Minimum amount to place order
<?php
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( 'You must have an order with a minimum of %s to place your order, your current order total is %s.' ,
wc_price( $minimum ),
wc_price( WC()->cart->total )
), 'error'
);
} else {
wc_add_notice(
sprintf( 'You must have an order with a minimum of %s to place your order, your current order total is %s.' ,
wc_price( $minimum ),
wc_price( WC()->cart->total )
), 'error'
);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment