Minimum bestelbedrag instellen
In WooCommerce kun je er voor kiezen om een minimum bestelbedrag te hanteren. Bestellingen onder dit bedrag kunnen niet worden afgerekend.
Wil je in jouw WooCommerce webshop ook een minimum bestelbedrag hanteren kun je het onderstaande stukje code in het functions.php bestand van je thema plaatsen.
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 = 50; if ( WC()->cart->total < $minimum ) { if( is_cart() ) { wc_print_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' ); } 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' ); } } }
In dit voorbeeld kan er pas worden afgerekend als het totaalbedrag excl. verzendkosten gelijk is aan, of groter is dan 50 euro.
Als je dit bedrag voor jouw webshop wilt aanpassen vervang je het bedrag bij $minimum = 50;
door een ander bedrag.