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
Calendar as Big and get event details to show
Re: Calendar as Big and get event details to show
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
{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
Hi Nullig, Thank you so much, this worked perfectly, you are awesome.