** What we'd like to see is, the calendar name, the event and a link to the description. **
All the regular calendar views are formatted by the default.html template file. The event title is displayed with the tag <%= EVENT FIELD(title) %>
The "Day" events code starts after the tag <%-- DAY VIEW --%> and the "List" view portion starts after the tag <%-- LIST VIEW --%>
From the Meta Calendar plug-in _installation.txt file under OPTIONS:
quote:
In the calendar view, $site_cal->{$EVENT->{details}->{calendarref}} will contain the calendar *name* the event was found on.
You can print that information using a tag like <%= $site_cal->{$EVENT->{details}->{calendarref}} %>
So, you need to find the appropriate section(s) of the default.html template file and add the necessary tag to print the calendar name.
Dan O.
[This message has been edited by DanO (edited November 19, 2004).]