Ive looked on here but havnt found a 100% answer. Is 8.2 good to update to for Pro or any Themeco Product?
Hey @EliteWebscapes,
Thanks for reaching out!
As I speak with our developers, the theme works with PHP 8.2. Though in PHP 8.2 there are deprecation warnings, you need to turn it off. You may add the code below 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);
For more information, please check this article.
Hope that helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.