Hi all. I’m trying to customize the look of the start date in the widget. To do it, I need the widget to output the start month and day, each surrounded by span tags with custom classes. By default, the start date contains the month, day, year and time. I’ve been able to get rid of the time, but haven’t had luck with anything else.
In events-advanced-list-load-widget-display.php on line 45 and 46:
$output = ”;
echo tribe_get_start_date( $post->ID, $start );
I changed $start to $date which gets rid of the time in the widget. And I’ve tried to parse the individual parts of the date by using $date(‘m’) and $date(‘d’), but it breaks the site when I reload.
Any suggestions?