Hi @rkwp ,
Sorry for the delay in replying and thanks for the link!
I’ll see if I can get this added into the plugin as an option, just touching base with Modern Tribe (the makers of The Events Calendar) to see if this extension might be included in core soon. If so it would be best to wait a bit in case the way the data is stored or retrieved might be changed up slightly.
In the meantime it is possible to customize either using hooks/filters (PHP code) in the free version, or else customizing one of the templates in the pro version, ie. the default template:
https://eventcalendarnewsletter.com/events-calendar-shortcode-pro-options/#customize-default
and put the status where needed. Looks like it’s stored as _tribe_events_control_status
so adding something like:
<?php echo get_post_meta( get_the_ID(), '_tribe_events_control_status', true ); ?>
where you want to output ‘postponed’ or ‘cancelled’ should do the trick!