Before you start, make sure that you have at least MySQL v4.
The plugin is in the form of a directory called 'eventcalendar3'.
Don't try to view your blog yet. First you must...
You must choose which WordPress category to use for events. (Viewing the options screen for the first time also sets up the database, and upgrades events from older versions of EventCalendar.)
If you use the WordPress Widgets, then the Event Calendar is available as an easy to install widget. In order to use it you must first activate the 'Event Calendar Widget' plugin.
If you use the K2 template then the Event Calendar is available as a sidebar module.
Otherwise, you need to make a small adition to your template. Add the following code to your sidebar.php:
Event Calendar:
<li>
<?php ec3_get_calendar(); ?>
</li>
Upcoming Events:
<li>Events
<?php ec3_get_events(5); ?>
</li>
If you are using an older template, then you should check that your HTML
header contains the following tag: <?php wp_head(); ?>
Caution: The Event Calendar must be unique. If you try to show more than one calendar on a page, then only the first will be displayed.




