You using php7 yes? I checked the errors and made a temporary fix to the lines showed in the error. Seems it’s an array push issue for php7.
== before ==
$var[] = value;
== after ==
$var = [];
$var[] = value;
Hi, I’m facing the same issue but with Salient theme, I can see you fixed the problem from your site… Any tips on how you did it? Might help a ton.. Thanks.. 🙂