Hello,
Did you change your themes template override files? If not then you should report this to them;
The following line of code in:
/templates/ja_purity_ii/html/com_jevents/default/day/listevents_body.php
has this line:
$class = $datenow->toFormat('%Y-%m-%d') > $row->startdate() ? "pastevent":"";
but $datanow is not defined, it should be:
$datenow = JEVHelper::getNow();
$class = $datenow->toFormat('%Y-%m-%d') > $row->startdate() ? "pastevent":"";
Many thanks
Tony