DanO,
With one of the calendars, I have MetaCalendar running. Should I make the change on each template:
Find:
<% IF SEARCH RESULTS EXIST %>
No Matches
<% ELSE %>
Next line, put this code:
<% @$SEARCH_RESULTS = sort {$a->{schedule}->{start} <=> $b->{schedule}->{start} } @$SEARCH_RESULTS; %>
And that will sort it from earliest to latest. Swap $a and $b to sort from latest to earliest.
------------------