SarahDKhoros Alumni (Retired)Joined 7 years ago28 Posts3 LikesLikes received3 SolutionsView All Badges
ContributionsMost RecentMost LikesSolutionsPollsRe: Trying to use occasion_data.status Natkinson If I understand the return object, correctly, I think you just have a misleading loop variable name. what is currently: <#if occasionData.status == 'upcoming'> //do some stuff for upcoming events here <#else> //do stuff for ongoing events here </#if> Should be: <#if occasionData.occasion_data.status == 'upcoming'> //do some stuff for upcoming events here <#else> //do stuff for ongoing events here </#if>