Hey Arrick,
Thanks for the kind words! I’m stoked to hear you’re loving the plugin so far. 🙂
Good question. You can change the format of the date in the icon. You’ll need to override the pro/widgets/modules/single-event.php file–see our Themer’s Guide for more on template overrides.
From there, you can change the code for the list date to something that suits your needs. For example, this might be a decent starting place:
<div class="list-date">
<span
class="list-dayname"><?php echo apply_filters( 'tribe-mini_helper_tribe_events_ajax_list_dayname', date_i18n( 'M', $postDate ), $postDate, $mini_cal_event_atts['class'] ); ?></span>
<span
class="list-daynumber"><?php echo apply_filters( 'tribe-mini_helper_tribe_events_ajax_list_daynumber', date_i18n( 'd', $postDate ), $postDate, $mini_cal_event_atts['class'] ); ?></span>
</div>
That will return the abbreviated Month name instead of the day of the week. 🙂
Will that help you get started? Please let me know.
Cheers!
Geoff