OK. I figured it out and thought I would post what I came up with in case someone else was needing help on the same issue.
Unfortunately the site isn’t live quite yet, but in hopes this can be of use to someone in the future: https://www.glenisredmond.com/tour-dates/
I wanted to accomplish 2 different things:
- On my event list format I wanted to make notes if an event was an all day event or multi-day event.
- On my single event format I wanted to show only the start date if it was a single date event, show both start and end dates if it was a multi-day event, and replace the dates with “all day” if it was an all day event.
EVENT LIST:
(this code is stripped down to the essentials. You’ll have to style it appropriately)
[events_if tag='#_IS_ALLDAY' is_empty=0]This is an all day event. [/events_if]
[events_if tag='#_IS_ALLDAY' is_empty=1]Event starts at #_{g:ia}. [/events_if]
[events_if tag="#ESC_{j M Y}" notvalue="#ESC@_{j M Y}"] This is a multi-day event. [/events_if]
SINGLE EVENT:
[events_if tag="#ESCj #ESCM #ESCY" value="#ESC@j #ESC@M #ESC@Y"]#M #j #Y[/events_if]
[events_if tag="#ESCj #ESCM #ESCY" notvalue="#ESC@j #ESC@M #ESC@Y"]#M #j -<br />#@M #@j[/events_if]
[events_if tag='#_IS_ALLDAY' is_empty=0]ALL DAY[/events_if]
[events_if tag='#_IS_ALLDAY' is_empty=1]#g:#i#_{a}[/events_if]