I am using the “big” calendar for my site. I have been mulling over this for several hours and cannot figure it out.
Currently, the event is linked to a calendar_detail page which shows more information about the event which stored in a custom field “event_info”.
If “event_info” is empty, I don’t want the calendar entry to be linked.
This is what I am trying to do, but it doesn’t work:
{entries}
{if event_info ==""}
<div id=“calendarLink”>{title}</div>
{if:else}
<div id=“calendarLink”>{title}</div>
{/if}
{/entries}
Any ideas?
thanks