xxxxxxxxxx
/**
* WebAppick – Apply Discount Coupon automatically to the cart
*/
function ts_apply_discount_to_cart() {
$order_total = WC()->cart->get_subtotal();
if( $order_total > 100 ) {
$coupon_code = '10OFF';
if ( !WC()->cart->apply_coupon( sanitize_text_field( $coupon_code ) ) ) {
wc_print_notices();
}
}
}
add_action( 'woocommerce_before_cart_table', 'ts_apply_discount_to_cart' );