Advertisement
eappereira

Preço minimo WooCommerce

Feb 19th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1.  
  2. add_action( 'woocommerce_checkout_process', 'min_order_woocommerce' );
  3.  
  4. function min_order_woocommerce() {
  5.     global $woocommerce;
  6.     $minimo = 100;
  7.     if ( $woocommerce->cart->get_cart_total() < $minimo ) {
  8.         $woocommerce->add_error( sprintf( 'Seu pedido deve ter um minimo de %s para completar a compra.' , $minimo ) );
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement