I also had this issue. The function auxin_kses doesn’t seem to exist. To fix it I removed all instances of auxin_kses from the auxin-elements folder, approx 23 instances. For example:
echo auxin_kses( $title );
Would become:
echo $title ;
EDIT: A quicker fix, add the following function to your theme functions:
function auxin_kses( $content) {
return ( $content );
}
Really need a properly released fix from the devs though!
-
This reply was modified 9 months ago by stim_marc.