Date format on venue page
-
The start date on the single event page is hard-coded for d-m-y format rather than picking up the date format option setting.
I fixed it by customizing the event-meta-event-single.php page:
<!-- Choose a different date format depending on whether we want to include time --> <?php if( eo_is_all_day() ){ $date_format = get_option('date_format'); }else{ $date_format = get_option('date_format') . ' ' . get_option('time_format'); } ?>
But can this fix be included in the next version, please?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Date format on venue page’ is closed to new replies.