(Hope I’m not posting too much – just noting issues/questions as I come across them)
When using conditional tags to check the values of event attributes, is there a way to check if an attribute (in my case, #_CATEGORIES
) does not contain a particular value?
[events_if tag="#_CATEGORIES" contains="Application"] <li>This is an Application</li> [/events_if]
works as expected. Using examples in the documentation, [events_if tag="#_CATEGORIES" notvalue="Application"] <li>This is NOT an Application</li> [/events_if]
is as close as I can get to checking if an event is not in the “Application” category.
This works fine for events that are in the “Application” category only, but fails for events that are in multiple categories including “Application”.
Is there a workaround for this?