При переходе на новую версию PHP появляется ошибка:
Fatal error: Call-time pass-by-reference has been removed in \wp-content\plugins\simple-lightbox\includes\class.utilities.php on line 40
Для устранения ошибки необходимо убрать знак "&" в коде:
function SLB_Utilities(&$obj) {
$this->__construct(&$obj);
}
$this->__construct(&$obj);
}