Is there a way to have a promotional code only apply to one kind of ticket within my event? I don’t want it to apply to the whole event. I have early bird, standard, and late pricing, and I only want the promo code to apply to the standard ticket price, but I don’t see an option for that.
Since you are using different ticket options that may activate and deactivate during different time periods, then I have an idea that may help. It is possible to use some CSS to hide tickets that are not currently active.
Create a promotion code that runs during the same time window as the standard ticket option. Then share that promo code right after the standard ticket option becomes available.
Here is the sample CSS that can be used to hide the expiring and upcoming tickets so only the active (available) tickets will be shown:
/* Hide ticket options with a status of expired */
.espresso_events .ticket-sales-expired {display:none;}
/* Hide ticket options with a status of upcoming */
.espresso_events .ticket-pending {display:none;}
The CSS above could then be added to your site through a plugin like Simple Custom CSS or Reaktiv CSS Builder. Both plugins are available from the WordPress plugins directory.
—
Lorenzo
Viewing 1 reply thread
The support post ‘Promo Code to apply to only one ticket option’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.