Description
Use the CSS snippet given below to hide the available ticket quantity shown in the ticket or RSVP.
Usage
Copy the below code into your (child) theme's style.css file, or add it to Appearance > Customize > Additional CSS box (or wherever you usually put custom styling).
Plugins
Event Tickets and Event Ticket Plus
Snippet
/*list view*/
span.tribe-tickets-left{
display: none !important;
}
/*single view*/
span.tribe-tickets-remaining{
display:none !important;
}
div.tribe-block__tickets__item__extra__available{
display:none;
}
/* v4.10+ */
div.tribe-tickets__item__extra__available{
display: none;
}
Notes
- Originally written in April 2019
- Tested with Event Tickets 4.10.3, Event Ticket Plus 4.10.2
- Author: Rafsun Chowdhury
Disclaimer
As with all of our recipes, please note that we share this in the hope it will be useful but without any guarantees or commitments. If you wish to use it, it is your responsibility to test it first of all and adapt it to your needs (or find someone who can do so on your behalf). We are unable to provide further support in relation to this recipe.