Howdy Rachel and welcome to the forums!
Good question. You can remove both the “Add to Cart” button and the quantity selection input by adding this to your theme’s style.css file or using the Simple Custom CSS plugin:
.tribe-events-style-full table.tribe-events-tickets td.woocommerce.add-to-cart,
.tribe-events-style-full table.tribe-events-tickets td:first-child {
display: none;
}
If you want to add a link to the product page for a ticket itself, you will want to do that using a template override. Our Themer’s Guide walks through template overrides, but it basically boils down to this:
- Make a copy of the tickets.php file. It’s located at /plugins/event-tickets-plus/src/views/wootickets/tickets.php
- Make a new folder in your theme folder called tribe-events
- Make another folder in that one called wootickets
- Drop the copied tickets.php file in that last folder
Now that the template is in your theme it can be customized to suit your needs. In this case, wrap the ticket name in a link to the product.
Will this help you get started? Please let me know. 🙂
Cheers!
Geoff