Is it possible for me to define two different templates for my events lists? For instance, right now, in my "default events list header", I have:
<table>
<tr>
<td><b>Date</b></td>
<td><b>Organization</b></td>
<td><b>Location</b></td>
<td><b>Ministry</b></td>
</tr>
In the center of my template code, in the "Default event list format" I have:
<tr>
<td>#M #j - #@M #@j, #o</td>
<td>#_LINKEDNAME</td>
<td>#_TOWN</td>
<td>#_CATEGORIES</td>
</tr>
And in my footer, in the "Default event list format footer", I have
</table>
I would like to be able to, in some instances, include the #_CATEGORIES column in some instances, as it is set up to do now, but in other instances, I would like to exclude the #_CATEGORIES from the events list and perhaps call other functions in that column. How do I do this?
Does the eme_get_events_list command have anything to do with returning the information that I need? If so, how would I use the code to return and display the information that I want (I'm sorry, I'm not understanding on the examples page).