Which version of Event Organiser are you running?
Thanks for your reply. I’m running version 2.12.1 and wordpress is version 4.1.1
Thanks
I have just deactivated your plugin and removed it. After reinstalling it works correctly. I guess it didn’t copy the files correctly or something.
All good now 🙂
Great :), I asked which version because that error wouldn’t make sense on that line in 2.12.1.
Glad it’s sorted.
Thanks for your help with that one. On a different topic how can I display a list of all the tags? I know I can use the_tags() for normal WP tags but only want this list to have the events tags.
Thanks again
No worries.
You can use the_terms() (taxonomy is either event-tag, event-category or event-venue).
Thanks but this only seems to display the tag linked to an event post. I want to display a list of all the tags that have been created.
the_tags() would only display tags for the given post, so the_terms() is the analogous function for that for generic taxonomy terms.
To get all terms in a taxonomy you can use get_terms() (see codex) – the codex gives examples of how to list all the terms in the taxonomy.
That’s great, the get_terms() works great!
I am having issues however viewing events by tag. After creating a tag and assigning events to it I try to view all the posts on the tag but keep getting the default wordpress not found page.
Somehow I have managed to fix this by changing the the permalink setting to default and then back to post name. Wired!
Yup, sounds like the rewrite rules needed flushing. You can do that by visiting the permalink settings (no need to update anything).
Okay, one more thing please.
I am using the shortcode [eo_calendar] and users can successfully click on the links in there to view events on that date. But I need it to show events on that date and after that date. Is this something that can be achieved by altering the query made?
Thanks again
You can use the filter eventorganiser_calendar_event_link (see [codex](http://codex.wp-event-organiser.com/hook-eventorganiser_calendar_event_link.html)), but there isn’t a particular page that shows all events from a particular date.
There are event links which show events in particular year/month or on a particular day (see Settings > Event Organiser > Permalinks ).
Please keep in mind the note about caching.
That’s perfect, thanks.
One last thing though Please. I can successfully get the venue map to display using eo_get_venue_map() but I am wanting to use jquerys slideToggle function on the maps div and hide it when the browser loads the page. The problem is that when the slideToggle function is called and the map is displayed, it does not display correctly. I think I somehow need to reload the map at the same time but not sure how I can do that?