I notice you put parentheses (round brackets) around the day name in the time field. It would look nicer if you remove these parentheses around the day name.
Jan 8,2017 AT 3:35AM - 2 years ago -This can be done using your own custom plugin. Add the following code:
function my_eventcard_array($eventcard) {
// Remove brackets from timetext
$eventcard['timelocation']['timetext'] = str_replace(array( '(', ')' ), '', $eventcard['timelocation']['timetext']);
}
return $eventcard;
}
add_filter('eventon_eventcard_array', 'my_eventcard_array');
There is a syntax error in the above function.
Remove the “}” on the line just before
return $eventcard;
Thank you for the code sample. Is there a way to show also the month?
Or you could use the “Allow universal event time format on eventCar” and specify the time format.
Best way to achive this to your desire is using the universal event time form as simon mentioned 🙂