I tried going through this tutorial (http://wp-event-organiser.com/blog/tutorial/creating-your-own-events-page/), but it ended only in a headache.
What I’m trying to achieve is to get the low-level, autogenerated pages to look and behave like the events list and single event pages I have created here:
http://fuelcincinnati.org/givebackcincinnati/event-registration/
http://fuelcincinnati.org/givebackcincinnati/events/event/give-back-cincinnati-holiday-party/
The problem is when a user would click a Venue, Category or Tag. This takes them to a page that does not completely adhere to the Theme I am using. It functionally works; however, it does not look good.
Ultimately, I’d like to create my own template, but I failed in integrating Event Organiser into the theme I am using (Bee).
Any help in clarifying how to achieve this would be awesome.
Regards,
JB

JB Woodruff
HI JB,
So there are four archive-type templates (in fact: they’re all just variations on the theme – to all intents and purposes they can be identical, except you might want a map at the top of the venue page, or category description at top of the category page).
The recommended approach is to start with your theme’s archive.php
template and makes copies of it with the names:
archive-event.php
taxonomy-event-category.php
taxonomy-event-venue.php
taxonomy-event-tag.php
The pages will now (obviously) fit into your theme – but they won’t display event details. Those templates may not display actually display anything at all, but instead include sub-templates which do: it really depends on the theme.
From there you can just add in the event-specific bits (and/or remove bits you don’t want). For instance:
echo eo_get_the_start( get_option('date_format') );
prints the start date
echo eo_get_event_meta_list();
prints a list of details (venue, category, tags) of an event
echo eo_get_venue_map( eo_get_venue() )
prints a map of the event’s venue
That’s really as much as I can say without seeing the theme, so if you’re still unsure feel free to get in touch viaemail with the zip of your theme and I’ll be happy to take a look.

Stephen Harris
Thank you Stephen. I have emailed you with an update and the zipped file.

JB Woodruff