Warnings Illegal strings offset

I get the following errors on this page:
https://borborren.nl/cursussen/

What can I do? I seems that the everything is working fine. It is show up in Chrome, not in Safari.

Warning : Illegal string offset ‘base’ in /home/customer/www/borborren.nl/public_html/wp-content/themes/x/framework/legacy/cranium/headers/setup.php on line 75

Warning : Illegal string offset ‘extension’ in /home/customer/www/borborren.nl/public_html/wp-content/themes/x/framework/legacy/cranium/headers/setup.php on line 76

Warning : Illegal string offset ‘base’ in /home/customer/www/borborren.nl/public_html/wp-content/themes/x/framework/legacy/cranium/footers/setup.php on line 70

Warning : Illegal string offset ‘extension’ in /home/customer/www/borborren.nl/public_html/wp-content/themes/x/framework/legacy/cranium/footers/setup.php on line 71

Warning : Illegal string offset ‘base’ in /home/customer/www/borborren.nl/public_html/wp-content/themes/x/framework/legacy/functions/frontend/view-routing.php on line 51

Warning : Illegal string offset ‘extension’ in /home/customer/www/borborren.nl/public_html/wp-content/themes/x/framework/legacy/functions/frontend/view-routing.php on line 56

Hello @Bor,

Thanks for writing to us.

It looks like a PHP Warning message, it is showing just because debugger mode is ON. Please have a look at this article to learn more about how to hide it

Add the below code in your wp-config.php.

ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_DISPLAY', false);

Hope that helps
Thanks

Solved! Thanks!!

Hello @Bor,

Glad that we were able to help you. Please feel free to reach us if you have any more concerns.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.