How can I apply all coupons codes automatically in the checkout page?
function apply_coupon_product() {
$coupon_code = $coupon->get_code();
if ( WC()->cart->has_discount( $coupon_code ) ) {
return;
}
WC()->cart->apply_coupon( $coupon_code );
}
if user have 1 coupon then it will apply 1 if user have more than 1 coupons then apply all coupons in the cart/checkout page. any help please?