I have a client who uses this theme on their site, and upgrading to PHP 8 created a fatal error. It seems stricter type checking in PHP 8 has created an error with the file /themes/fruitful/inc/metaboxes/init.php. On line 756 the following change needs to be made:
elseif ( is_array( $meta_box['pages'] ) && count( $meta_box['pages'] === 1 ) )
$type = is_string( end( $meta_box['pages'] ) ) ? end( $meta_box['pages'] ) : false;
I have a client who uses this theme on their site, and upgrading to PHP 8 created a fatal error. It seems stricter type checking in PHP 8 has created an error with the file /themes/fruitful/inc/metaboxes/init.php. On line 756 the following change needs to be made:
elseif ( is_array( $meta_box['pages'] ) && count( $meta_box['pages'] === 1 ) )
$type = is_string( end( $meta_box['pages'] ) ) ? end( $meta_box['pages'] ) : false;