I am trying to hide the “Date” part in single event view.
I have copied over
modules/meta.php — Used within single-event.php to display meta information for an event
modules/meta/details.php — Adds information such as the start and end time within the meta section
to my theme/tribe-events/modules/meta
I tried commenting this out in details.php
<!-- <?php
// All day (single day) events
elseif ( tribe_event_is_all_day() ):
?>
<dt> <?php esc_html_e( 'Date:', 'the-events-calendar' ) ?> </dt>
<dd>
<abbr class="tribe-events-abbr tribe-events-start-datetime published dtstart" title="<?php esc_attr_e( $start_ts ) ?>"> <?php esc_html_e( $start_date ) ?> </abbr>
</dd> -->
but it didn’t remove the date.
Do you have any advice for me?
Thank you.