Skip to content

Instantly share code, notes, and snippets.

@diogenesc
Created March 12, 2019 15:31
Show Gist options
  • Save diogenesc/0408c7c32c21b686e7b6d9aa400c3324 to your computer and use it in GitHub Desktop.
Save diogenesc/0408c7c32c21b686e7b6d9aa400c3324 to your computer and use it in GitHub Desktop.
/**
* 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 = 100;
if ( WC()->cart->total < $minimum ) {
if( is_cart() ) {
wc_print_notice(
sprintf( 'O total da sua compra é %s — você deve ter um pedido de no mínimo %s reais para finalizar ' ,
wc_price( WC()->cart->total ),
wc_price( $minimum )
), 'error'
);
} else {
wc_add_notice(
sprintf( 'O total da sua compra é %s — você deve ter um pedido de no mínimo %s reais para finalizar ' ,
wc_price( WC()->cart->total ),
wc_price( $minimum )
), 'error'
);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment