** I need a mod to show the Calendar Name and/or the Calender Description on the VIEW CALENDAR. **
I assume you mean show the calendar name beside the "View Calendar" link on the administration menu?
That may be able to be accomplished by editing the main.html admin template as follows:
Find the line
<% if ($command->{description} ne "") { %> : <%= $command->{description} %><% } %>
and add this line directly after it:
<% if ($command->{title} eq "View Calendar") { %> <% CALENDAR NAME %><% } %>
You could also use <% CALENDAR DESCRIPTION %> in place of <% CALENDAR NAME %> in the above line to show the calendar description instead.
Dan O.
[This message has been edited by DanO (edited September 16, 2003).]