Fatal Error Contact Form
Hi,
The contact form is giving a fatal error:
Fatal error: Uncaught TypeError: sizeof(): Argument #1 ($value) must be of type Countable|array, WP_Error given in /home/website/public_html/
wp-content/themes/jobroller/includes/views.php:2462
I replaced this line in the file themes/jobroller/includes/views.php line 2462:
if ( $errors_recaptcha && sizeof($errors_recaptcha)>0 ) {
for this one:
if ( $errors_recaptcha && !is_wp_error($errors_recaptcha) && !empty($errors_recaptcha->errors) ) {
And it no longer gives an error.
Please fix this bug.