Skip to content

Instantly share code, notes, and snippets.

@boluda
Created August 21, 2014 14:56
Show Gist options
  • Save boluda/73a9cfe0d7a156dcea89 to your computer and use it in GitHub Desktop.
Save boluda/73a9cfe0d7a156dcea89 to your computer and use it in GitHub Desktop.
add_action( 'woocommerce_checkout_process', 'jb_minimum_order_amount' );
function jb_minimum_order_amount() {
global $woocommerce;
$minimum = 50;
if ( $woocommerce->cart->get_cart_total(); < $minimum ) {
$woocommerce->add_error( sprintf( 'Como mínimo necesitas comprar por valor de %s para procesar la compra.' , $minimum ) );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment