Hi @caimin_nwl
Two possible scenarios (with the first one preferred):
1- Use my own template to show the event list (created with another plugin) using a shortcode: to do that I need to get the event post IDs from $args variable, passing the IDs to the shortcode (also considerig what filtered with the events search form): is it possible to get the post ids from $args (or is there any way to get the ids?)
2- second possibility (if the first one is not possible): I would like to show the event category list like the events list template. I have styled the events list in a table with the event image an so on (below the code), an I wolud like to obtain something similar for the category page (that now is only a list of event, if I simply use #_CATEGORYNEXTEVENT).
Thanks!
Ositive
Event list header:
<table cellpadding=”0″ cellspacing=”0″ id=”current-events” >
<thead>
<tr>
<th id=”event-time” width=”150″>Date/Time</th>
<th id=”event-description” width=”*”>Event</th>
</thead>
<tbody>
Event list:
<tr>
<td>
#_{d/m/Y} #@_{ – d/m/Y}<br/>
#H:#i -#@H:#@i
</td>
<td>
<div style=”float:left; margin:0px 10px 0px 0px;”>#_EVENTIMAGE{100,100}</div>
#_EVENTLINK<br/>
<i>#_LOCATIONNAME, #_LOCATIONTOWN #_LOCATIONSTATE</i>
</td>
</tr>