Minimum vásárlási mennyiség
Olvasási idő: < 1 perc.
Ezzel a kóddal megadhatsz minimum vásárlási mennyiséget. A kódban ez a mennyiség: 10.
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 = 10; if ( WC()->cart->total cart->total ) ), 'error' ); } else { wc_add_notice( sprintf( 'You must have an order with a minimum of %s to place your order, your current order total is %s.' , wc_price( $minimum ), wc_price( WC()->cart->total ) ), 'error' ); } } }