add_filter(‘tribe_events_event_schedule_details’, ‘change_minical_title_month_format’);
now if I want to add a list?
with one month it works but who to do it all
function change_minical_title_month_format($title) {
return str_replace(‘January’, ‘Jan’, $title);
return str_replace(‘February’, ‘Feb’, $title);
return str_replace(‘March’, ‘Mar’, $title);
return str_replace(‘April’, ‘Apr’, $title);
return str_replace(‘May’, ‘MAy’, $title);
return str_replace(‘June’, ‘Jun’, $title);
return str_replace(‘July’, ‘Jul’, $title);
return str_replace(‘August’, ‘Aug’, $title);
return str_replace(‘September’, ‘Sept’, $title);
return str_replace(‘October’, ‘Oct’, $title);
return str_replace(‘November’, ‘Nov’, $title);
return str_replace(‘December’, ‘Dec’, $title);
}