Hi,
Great plugin and support from Steve always. Keep up the good work.
Question 1: How can I have single events popup in a window when they are clicked<br />
on the full calendar?
Question 2: Is it possible to disable the clicking of events on the full calendar?
In a few cases I just want the user to hover over the event for the
information not click it!
Thanks
Mel

Mel Fisher
Hi Mel,
1) I’m not sure this is possible without editing the core plug-in. The calendar has an eventClick property (see http://fullcalendar.io/docs/mouse/eventClick/) – but there is no way of setting that without editing frontend.js
and adding it.
2) This is easy, just use this snippet and return false: http://codex.wp-event-organiser.com/hook-eventorganiser_calendar_event_link.html

Stephen Harris
Hi Stephen,
I would like to try option #2 that you mentioned, but I am not very technical.
Can you give me more detail on how to implement the hook to disable clicking on events on a full calendar.
Thank You
Mel

Mel Fisher
Try adding
add_filter('eventorganiser_calendar_event_link', '__return_false' );
to a site utility plugin or theme functions.php. Then you’ll need to update an event to clear the cache.

Stephen Harris
Hi again,
Thank you worked great! on my full calendar… used code snippets and added the filter.
this post can be closed.
Mel

Mel Fisher