Hi Marc-Andre,
There’s a limit to the amount of support we can offer for customization work like this – but if for instance you wish to take users straight to the product page from list/month view then you can do so:
- Depending on your personal preference, you could put this in place either by setting up template overrides or by using a suitable hook
- You could test for the presence of tickets for the event in question and then substitute the link to the single product page when appropriate
The “tricky bit” is getting the single product URL. You can obtain all tickets for a given event with code like this:
$tickets = TribeEventsTickets::get_all_event_tickets( $event_id )
If there are multiple then you will need to decide on which you wish to use (unless you list the permalinks for each, of course) then simply call get_permalink() – passing in the appropriate ticket ID with each call:
get_permalink( $single_ticket->ID );
I hope that gives you some ideas to get you started 🙂