For my calendar, I have a custom event field called "category". I have several options for this category, each of which has a value and display text. For example, "junchoir" for value and "Junior Choir" for display text. I have the following line in my template:
<% FOREACH EVENT %><%= EVENT FIELD(category) %><% /FOREACH %>
This returns the value "junchoir", but I want the template to return the display text "Junior Choir". How do I go about doing this? I want to avoid simply changing the value to match the display text, because I don't want to run into problems with having spaces, etc in my SSI calls.
Thanks!