Hi Again,
You are right there is no message there and it would be support and the product better to have something.
I found you can add a message to this template:
plugins/event-tickets-plus/src/views/wootickets/tickets.php
Moved to here in your theme:
yourtheme/tribe-events/wootickets/tickets.php
Then at the bottom.
Replace this
if ( $is_there_any_product ) {
echo $content;
}
With this:
if ( $is_there_any_product ) {
echo $content;
} else {
echo "
Tickets are no longer on sale.
";
}
You could then replace the message I put there with something you would like to use.
Also, if you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there.
http://tribe.uservoice.com/
Does that work for now?
Cheers