Last active
May 7, 2020 22:50
-
-
Save ChromeOrange/9778745 to your computer and use it in GitHub Desktop.
Set a minimum order value for WooCommerce - requires 2.1 or higher
This file contains 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', '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.' , | |
woocommerce_price( $minimum ), | |
woocommerce_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.' , | |
woocommerce_price( $minimum ), | |
woocommerce_price( WC()->cart->total ) | |
), 'error' | |
); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this still working for WooCommerce 2.3.2? Everything worked fine before. After update this:
Although I have a bigger amount in the cart than the set minimum amount I get your error message during the checkout process when I want to pay.