** 1. Eliminate the No. Column **
Search the template code for "No" (without the quotes, exact case) and remove it along with the surrounding <td..> </td> tags. That will remove the column title.
Them remove the line <TD><font size="1"><%=$total_events%>.</TD> which prints the line number.
** 2. Add the year in the date column **
The year may be able to printed with the following tag, insert it where appropriate and see.
<%= $DAY->{yyyy} %>
** 3. Add City field (has been added in admin) 4. Add State field (has been added in admin) **
You're going to need to know the 'key' value for any fields you want printed (maybe "city" and "state"?). You can then print them using tags like:
<%= $EVENT->{'details'}->{'Field_Key_Field'} %>
eg. <%= $EVENT->{'details'}->{'city'} %>
You'll need to figure out where the corresponding HTML table tags will need to go. The column titles will likely need to go in the area where you removed the "No" and the corresponsing <td...>,</td> tags.
Dan O.
------------------