Which date variable should I be using if I want to show the on the mini calendar the event date, and not he date it was entered?
here is the calendar I am using:
{exp:channel:calendar switch="calendarToday|calendarCell" channel="calendar" show_future_entries="yes"}
<table class=“calendarBG” border=“0” cellpadding=“6” cellspacing=“1” summary=“My Calendar”>
<tr>
<th><div class=“calendarMonthLinks”><<</div></th>
<th colspan=“5”>{date format="%F %Y"}</th>
<th><div class=“calendarMonthLinks”>>></div></th>
</tr>
<tr>
{calendar_heading}
<td class=“calendarDayHeading”>{lang:weekday_abrev}</td>
{/calendar_heading}
</tr>
{calendar_rows}
{row_start}<tr>{/row_start}
{if entries}
<td class=’{switch}’ align=‘center’>{day_number}</td>
{/if}
{if not_entries}
<td class=’{switch}’ align=‘center’>{day_number}</td>
{/if}
{if blank}
<td class=‘calendarBlank’>{day_number}</td>
{/if}
{row_end}</tr>{/row_end}
{/calendar_rows}
</table>
{/exp:channel:calendar}