Created
August 21, 2014 14:56
-
-
Save boluda/73a9cfe0d7a156dcea89 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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