Hi and thank you for a great WordPress plugin.
I have added a custom field called Category, and I use a select list to define about 20 different categories. They display great on the add/edit event form, and in the event admin list, but out on the calendar in trying to display the category labels using event.category, the display ends up showing the key (i.e., if “category_0” has a label of “My School”, the event.category display shows “category_0” which is meaningless to the visitor.
How to I get the template in event_text to display the custom field’s label instead of its key? Here is the template code I am using:
return "<b> "+event.text+"</b><br>"+"Category:"+event.category;
I hope this makes sense. Thank you in advance for your help!