Sorry to bother you again. I have one more item to fix in my customization of ECP. I wanted to have the start times show for events in the Month View calendar. At first, I used the code per the tutorial here: https://theeventscalendar.com/support/documentation/add-start-time-to-event-title-in-month-view/
echo tribe_get_start_date( $post->ID, true, ‘ ‘ ) . ‘ ‘;
However, that did not work. So I used the code suggested in this forum post: https://tri.be/support/forums/topic/unable-to-add-start-time-to-event-in-month-view/
tribe_get_start_date( $post->ID, false, get_option( ‘time_format’ ) )
That worked, but now I get start times for all events, even the all-day events (they show 12:00AM). How do I remove the start times for all-day events?
Sorry for any formatting issues with this post…wasn’t sure the best way to copy the code.