Howdy Martine,
I would love to help you with this.
If your goal is to simply hide the Tickets stocks then a little bit of CSS could get you there:
span.tribe-tickets-remaining { display: none; }
Similarly to style the + and Minus buttons you could do something like this:
.woocommerce .quantity input.plus, .woocommerce .quantity input.minus {
background-color: rgba(225, 20, 36, 0.75);
border: none;
}`
Finally hiding the Google/iCal links:
.tribe-events-cal-links { display: none; }
However if you wish to completely remove things from the front end instead of just hiding, such as the Stock count, you will need to create an override. Our Themer’s Guide walk you through this process.
Does that help get you to where you want to be?
Cheers!
– Brook