I have the exact same problem - any help would be appreciated!
Also, when this plugin gets the date and time of the event, if it's a recurring event, it returns the entire range of the recurring event, not the actual event time. Its query is:
Code:
$query = "SELECT e.*, c.title AS cal_title FROM {$bbpixel_vbdb_tbprefix}event e, {$bbpixel_vbdb_tbprefix}calendar c
WHERE e.calendarid = c.calendarid
AND e.calendarid IN ({$bbpixel_calendar_id})
AND visible='1'
AND (
(e.dateline_from <= '{$fromUnix}' AND e.dateline_to >= '{$fromUnix}')
OR (e.dateline_from >= '{$fromUnix}' AND e.dateline_from <= '{$endUnix}')
)
ORDER BY e.dateline_from ASC, e.calendarid DESC";