Skip to content

Instantly share code, notes, and snippets.

@woogists
Last active November 6, 2025 16:40
Show Gist options
  • Select an option

  • Save woogists/9a8f240c37d488783028a43a2416a647 to your computer and use it in GitHub Desktop.

Select an option

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'
);
}
}
}
@Harabe-x
Copy link

Harabe-x commented Nov 6, 2025

This code doesn't work

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