I'm trying to install a small calendar - like here
http://www.dbkwebdevelopment.com/CMSMS/cmsmadesimple/
But when I add an event - it shows the even tname on the small calendar - and then tthrows the whole thing out of whack
How can I turn the name off on the small calendar but still have it on the big calendar ?
thanks
DonnaNJ
Small calendar - how can I make it not show the event name
Re: Small calendar - how can I make it not show the event name
Edit the Calendar Template and change:
to:
Nullig
Code: Select all
<ul>
{foreach from=$day.events item=event}
<li><a href="{$event.url}">{$event.event_title}</a></li>
{/foreach}
</ul>
Code: Select all
{if $table_id eq "big"}
<ul>
{foreach from=$day.events item=event}
<li><a href="{$event.url}">{$event.event_title}</a></li>
{/foreach}
</ul>
{/if}
Re: Small calendar - how can I make it not show the event name
Set to 1 to display the summary information or 0 to not display it in calendar mode. Default is 1. (optional)
Example:
{cms_module module="Calendar" summaries="0"}
Shane
Example:
{cms_module module="Calendar" summaries="0"}
Shane