Overview: If you’re using Event Tickets with Tickets Commerce and aren’t planning to offer coupon codes, you might want to simplify the checkout experience by removing the “Add coupon code” field.
Can I disable the coupon field from settings?
Currently, Event Tickets does not provide a built-in option to disable or hide the coupon code field directly within the Tickets Commerce settings. However, you can easily hide it using a small CSS snippet.
How to Hide the Coupon Field via CSS:
To remove the coupon code field from your checkout page:
- Log in to your WordPress Dashboard
- Go to Appearance → Customize → Additional CSS
- Add the following CSS:
.tec-tickets-commerce-checkout-cart__coupons {
display: none !important;
}
- Click Publish to save changes.
This CSS rule will hide the coupon field for all users during the checkout process.