joinfof,
Thanks for getting in touch! This is definitely possible by performing a template override (to learn more about this check out our themer’s guide) on ‘/wp-content/plugins/the-events-calendar/views/modules/meta/details.php’. Once you’ve overridden and copied this file over to your theme directory, you’ll want to look around line 98 for this code:
<?php echo tribe_meta_event_tags( __( 'Event Tags:', 'tribe-events-calendar' ), ', ', false ) ?>
And comment it out like this:
<?php //echo tribe_meta_event_tags( __( 'Event Tags:', 'tribe-events-calendar' ), ', ', false ) ?>
Then directly below it, you’ll want to add the following code:
<?php echo get_the_term_list( get_the_ID(), 'post_tag', '<dd class="tribe-event-tags">', ', ', '</dd>' ); ?>
This should output your list of tags without the tag heading, like this: http://grab.by/yoBU
Give that a try and let me know if you have further questions. Thanks! 🙂
-Casey-