I'm using CGCalendar to manage events on a new site.
I've created an upcominglist template:
Code: Select all
<div id="events">
<h2>Upcoming Events</h2>
{foreach from=$events key=key item=event}
<div class="eventPanel">
<h3><a href="{$event.url}">{$event.event_title}</a></h3>
<p class="eventVenue">Venue: {$event.venue}</p>
<p class="eventCategory">Event Category: {$event.category}</p>
<a class="eventDate" href="{$event.url}">
<span class="month">{$event.event_date_start|date_format:"%b"}</span> <span class="day">{$event.event_date_start|date_format:"%d"}</span>
</a>
<p class="eventDescription">{$event.event_summary}</p>
<a href="{$event.url}" class="btnReadMore">View Event</a>
</div>
{/foreach}
</div>
Is this a known issue? I couldn't find any topics with a similar problem.
Any help would be greatly appreciated.
Regards,
Rich