Adding filter Plugin is breaking onpopup event
I have a wordpress template that needs to have FILTER, MULTIPLE CALENDARS, AND LIST . Everything works great until i add the filter plugin call.
When i add this code it nothing appears (install directory is 'ezcalendar')
<?php
require("ezcalendar/plugins/filter.php");
?>
Even funnier is, that if i add this code in front of that, it will display correctly but i can not click on any of the Date fields as eventPopup is undefined:
<?php
ob_start();
require("ezcalendar/calendar.php");
ob_end_clean();
require("ezcalendar/plugins/filter.php");
?>
Thanks for any help
|