Hi @centoasa
I’m glad I was able to help you on that one.
As for the start and end date of sale of the ticket, by default it’s not supported at the moment.
However, you can try doing a template override on this file event-tickets/src/views/v2/tickets/item/content.php
and copy it to [your-theme]/tribe/tickets/v2/tickets/item/content.php
From there you can add the details of your ticket’s start and end dates.
For example on line #52, you can add the following:
echo "Start date of sale: " . $ticket->start_date . "<br>";
echo "End date of sale: " . $ticket->end_date . "<br>";
See- https://share.zight.com/OAu75Bjp
As always, please test it first on your staging site to avoid unnecessary downtime in your live site.
Let me know how it goes.