WooCommerce – Automatically Apply Coupon Code Based On State
add_action( ‘woocommerce_before_calculate_totals’, ‘auto_apply_coupon_conditionally’, 10, 1 ); function auto_apply_coupon_conditionally($cart) { //$cart = WC()->cart; if ( is_admin() && ! defined( ‘DOING_AJAX’ ) ) return; if ( did_action( ‘woocommerce_before_calculate_totals’ ) >= 2 ) […]
Read more