Further info update:
Hi, after doing further testing, I’m still getting an error. I deactivated youzify. Then, I deactivated bbpress and buddypress but still getting an error. I am not too familiar with the files and coding but I opened the files where the errors are indicatd in the above error message I posted. If anyone is familiar and sees an error, I would really appreciate the heads up. Probably a long shot but thought I’d try. Thanks!
First file:
An error of type E_ERROR was caused in line 62 of the file /home/advance1/public_html/wp-content/plugins/bbpress/includes/extend/buddypress/notifications.php. Error message: Uncaught ArgumentCountError: Too few arguments to function bbp_format_buddypress_notifications(), 5
this is the code showing in the above file currently:
Line 62-6 :
function bbp_format_buddypress_notifications( $content, $item_id, $secondary_item_id, $action_item_count, $format, $component_action_name, $component_name, $id ) {
// Bail if not the notification action we are looking for
if ( 0 !== strpos( $component_action_name, ‘bbp_new_reply’ ) ) {
return $content;
}
_______________
The code found in this file: passed in /home/advance1/public_html/wp-includes/class-wp-hook.php on line 307:
line 303: // Avoid the array_slice() if possible.
if ( 0 == $the_[‘accepted_args’] ) {
$value = call_user_func( $the_[‘function’] );
} elseif ( $the_[‘accepted_args’] >= $num_args ) {
line 307–> $value = call_user_func_array( $the_[‘function’], $args );
} else {
$value = call_user_func_array( $the_[‘function’], array_slice( $args, 0, (int) $the_[‘accepted_args’] ) );
}
}
} while ( false !== next( $this->iterations[ $nesting_level ] ) );
________________
Last error file:passed in /home/advance1/public_html/wp-includes/class-wp-hook.php on line 307