This is a Developer level document. If you are unfamiliar with code/templates and resolving potential conflicts, select a WooExpert or Developer for assistance. We are unable to provide support for customizations under our Support Policy.
The code snippet below allows you to:
-
Show a notice on the cart and checkout page, reminding customers that they get a discount if spending more than a minimum amount.
-
Automatically apply a discount and show a notice that the discount was applied when the cart total is more than a minimum amount.
Requirements:
-
A coupon called
COUPON
created in WooCommerce > Coupons without a minimum amount. -
The
$minimum_amount
variable adjusted to the minimum amount according to your needs. -
Notices edited to reflect the discount wanted.
functions.php
file or via a plugin that allows custom functions to be added, such as the Code snippets plugin. Please don’t add custom code directly to your parent theme’s functions.php
file as this will be wiped entirely when you update the theme.
/** * Apply a coupon for minimum cart total */ add_action( 'woocommerce_before_cart' , 'add_coupon_notice' ); add_action( 'woocommerce_before_checkout_form' , 'add_coupon_notice' ); function add_coupon_notice() { $cart_total = WC()->cart->get_subtotal(); $minimum_amount = 50; $currency_code = get_woocommerce_currency(); wc_clear_notices(); if ( $cart_total < $minimum_amount ) { WC()->cart->remove_coupon( 'COUPON' ); wc_print_notice( "Get 50% off if you spend more than $minimum_amount $currency_code!", 'notice' ); } else { WC()->cart->apply_coupon( 'COUPON' ); wc_print_notice( 'You just got 50% off your order!', 'notice' ); } wc_clear_notices(); }