John,
There is no way to reorder the legend. If you refer to the wiki in the FAQ you can remove specific categories from displaying, but that’s it.
Plugin Contributor
Barry
(@barryhughes-1)
Not sure exactly how you want to sort them, but a couple of thoughts:
1) You can reorder the list of categories before they are printed out within the legend:
add_filter( 'teccc_get_terms', 'reorder_teccc_categories' );
function reorder_teccc_categories( array $terms ) {
return array_reverse( $terms );
}
2) You can override the legend template: just copy views/legend.php to your-theme/tribe-events/teccc/legend.php and add some logic in there to reorder things as you’d like.
I’d personally vote for the first option, just to keep things clean – but the second option isn’t “wrong” and depending on where you prefer to keep things and how comfortable you are working with actions and filters it might even be easier to implement and maintain.