Created
May 18, 2021 05:13
-
-
Save wbcomdev/18508d7d81d8dd7a52fb1e29dd4a20c3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| /** | |
| * Set a minimum order amount for checkout. | |
| */ | |
| function wb_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( | |
| 'Your current order total is %s — you must have an order with a minimum of %s to place your order ', | |
| wc_price( WC()->cart->total ), | |
| wc_price( $minimum ) | |
| ), | |
| 'error' | |
| ); | |
| } else { | |
| wc_add_notice( | |
| sprintf( | |
| 'Your current order total is %s — you must have an order with a minimum of %s to place your order', | |
| wc_price( WC()->cart->total ), | |
| wc_price( $minimum ) | |
| ), | |
| 'error' | |
| ); | |
| } | |
| } | |
| } | |
| add_action( 'woocommerce_checkout_process', 'wb_wc_minimum_order_amount' ); | |
| add_action( 'woocommerce_before_cart', 'wb_wc_minimum_order_amount' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment