**Warning** : Undefined array key - Trouble updating to new X Theme

Recently trying to update my site to synchronize with latest X Theme/ Cornerstone and WP releases.
This series of warnings is now occuring.

Warning : Undefined array key “selector” in /home/arksea2/public_html/wp-content/themes/pro/cornerstone/includes/classes/Documents/Content.php on line 90

Warning : Undefined array key “compression” in /home/arksea2/public_html/wp-content/themes/pro/cornerstone/includes/classes/Documents/Content.php on line 91

Warning : Undefined array key “min_size” in /home/arksea2/public_html/wp-content/themes/pro/cornerstone/includes/classes/Documents/Content.php on line 92

Warning : Undefined array key “max_size” in /home/arksea2/public_html/wp-content/themes/pro/cornerstone/includes/classes/Documents/Content.php on line 93

Warning : Undefined array key “selector” in /home/arksea2/public_html/wp-content/themes/pro/cornerstone/includes/classes/Documents/Content.php on line 90

Warning : Undefined array key “compression” in /home/arksea2/public_html/wp-content/themes/pro/cornerstone/includes/classes/Documents/Content.php on line 91

Warning : Undefined array key “min_size” in /home/arksea2/public_html/wp-content/themes/pro/cornerstone/includes/classes/Documents/Content.php on line 92

Warning : Undefined array key “max_size” in /home/arksea2/public_html/wp-content/themes/pro/cornerstone/includes/classes/Documents/Content.php on line 93

Hello @mfksdk7

Thanks for writing to us.

This is just a PHP warning and doesn’t affect any functionality of your website. To remove the warnings, I suggest that you add this code to your wp-config.php file.

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

Reference:

Hope that helps.
Thanks

Excellent! This worked. Thank you.

You are most welcome.

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