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:

  1. Log in to your WordPress Dashboard
  2. Go to Appearance → Customize → Additional CSS
  3. Add the following CSS:
.tec-tickets-commerce-checkout-cart__coupons {
display: none !important;
}
  1. Click Publish to save changes.

This CSS rule will hide the coupon field for all users during the checkout process.