I followed the various steps in another thread and have them listed in full here:
1. create an ‘events’ folder in your Theme directory
2. copy 3 Event Template files to the above folder:
- gridview.php
- list.php
- single.php
3. Edit each of the files as you please.
To add the Sidebar: add an include right before the Footer include in the Event Template:
<?php include (TEMPLATEPATH.'/sidebar.php'); ?>
<?php include (TEMPLATEPATH.'/footer.php'); ?>
4. Fix the footer include – it’s lacking a closing PHP bracket.
5. Edit the ‘events.css’ file located here:
/wp-content/themes/*theme-name*/events/the-events-calendar/resources
6. .category-events #tec-content
– controls the width, padding and background for the Calendar. Adjust as needed to fit your theme.
– I used 620px width with Sidebar and created a second class with a width of 910px for the gridview with no sidebar.
– I changed the padding margin etc so the Calendar fits seamlessly into my theme.
I left the sidebar off for ‘gridview.php’ so the full calendar could be viewed without being squished.
I added the sidebar foe the ‘list.php’ and ‘single.php’ views. I did so by creating a second #tec-content width:
.category-events #tec-content1
(620px for my Theme)
Thanks to the author shane.pearlman, tcsoul and sacredpractice for their notes in the other thread. I would have bailed on this excellent plugin without them!