Hey David,
Thanks for reaching out to us on this – I’ll help you out!
I think that tags already come ordered alphabetically (a-z), because that’s the default order for get_tags (the WordPress function that gets the values for the filter). I’ll leave a code sample of how to modify the results before displayed:
/*
* The Events Calendar - Change filter values order
*/
add_filter( 'tribe_events_filter_values', 'tribe_re_order_filter_tags', 10, 2 );
function tribe_re_order_filter_tags ( $values , $slug ){
if ( $slug == 'tags' ) {
sort($values); // a-z
//rsort($values); // z-a
}
return $values;
}
Paste this snippet in the theme functions.php file located at wp-content/themes/your_theme/ and that should let you re-order the filters.
Please let me know if this is what you were looking for,
Best,
Nico