Page 1 of 1

Calendar as Big and get event details to show

Posted: Wed Nov 19, 2008 8:27 pm
by Alpdog14
I have a calendar which is set to display the calendar and big style. I have event details in the event but how do I get the details to appear under the number date. I am using this line:

{cms_module module='Calendar' table_id='big' first_day_of_week='0'}

but what parameter for the big id lets the details of each event show. Any advice would be appreciated.

Thanks

Re: Calendar as Big and get event details to show

Posted: Thu Nov 20, 2008 1:35 am
by Nullig
The calendar template controls what is shown - specifically, this section:

{foreach from=$day.events item=event}
{$event.event_title}
{/foreach}

This displays the Event Title, with a link to the detailed info for the event. You could change this to show other info like {$event.event_summary} instead of {$event.event_title}.

Nullig

Re: Calendar as Big and get event details to show

Posted: Fri Nov 21, 2008 3:33 pm
by Alpdog14
Hi Nullig, Thank you so much, this worked perfectly, you are awesome.