I’m using EE 2.4 build 20120123
In the calendar tag, I’m trying to use the day_path or date variables within {if not_entries} but they won’t parse?
{!--this works fine--}
{if entries}
<td class="{switch}"><a href="http://{day_path=events/view}">{day_number}</a></td>
{/if}
{!-- day_path unparsed within not_entries and including {date format='%Y'} here results in no output for all blank cells --}
{if not_entries}
<td class="{switch}"><a href="http://{day_path=events/view}">{day_number}</a></td>
{/if}I’m trying to link each date in the calendar to template-group/template/yy/mm/dd regardless of whether the date has entries with that entry date or not - is this possible?