Thanks! This is definitely along the lines of what I’m looking for.
I’ve broke my site a few times trying to modify
function em_wpfullcalendar_category_label($taxonomy_args,$taxonomy){
if ( $taxonomy->name == 'event-categories'){
$taxonomy_args['show_option_all'] = 'All Cats';
}
return $taxonomy_args;
}
add_filter('wpmfc_calendar_taxonomy_args','em_wpfullcalendar_category_label',1,2);
so that it applies to the Tags section and not the Categories section.
I’m hoping that I can figure it out.