I just noticed all the events are showing as 12:00am in our events listings page, although they have the correct times when you click through to the event page.
Has anyone else experienced this and if so have you got a fix?
Hi all,
Replace the following line (about line 140) in page-events.php:
echo ““.date(‘l j M Y g:ia’,strtotime($thisdate)).”“;
with
echo “ “.date(‘l j M Y g:ia’,strtotime(get_post_meta($post->ID,’event_start_time’,true))).”“;
Ok, I think I’ve got it now, put the following code between the html strong tags:
.date(‘l j M Y’,strtotime($thisdate)). ” ” .date(‘g:ia’,strtotime(get_post_meta($post->ID,’event_start_time’,true))).
You’ll now get the correct date and start time of the event.