Advertisement
retoo

Mindestbestellwert hinzufügen

Mar 15th, 2021
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. add_action( 'woocommerce_checkout_process', 'wc_minimum_order_amount' );
  2. function wc_minimum_order_amount() {
  3.     global $woocommerce;
  4.     $minimum = 50;
  5.     if ( $woocommerce->cart->get_cart_total(); < $minimum ) {
  6.            $woocommerce->add_error( sprintf( 'You must have an order with a minimum of %s to place your order.' , $minimum ) );
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement