How to change Events page on Sage skin?
Ning To Jamroom
Those blocks are most likely contained in a side.tpl or something like that and appear across many 'front end' areas of the site. If you goal is only to change the blocks in the events page, it would be easier to create a side_events.tpl and include that in the events.tpl page.
ie instead of
<div class="col3 last">
<div class="body_1">
{jrCore_include template="side.tpl"}
</div>
</div>
in events.tpl have this
<div class="col3 last">
<div class="body_1">
{jrCore_include template="side_events.tpl"}
</div>
</div>
Then add things to the side_events,tpl file.