Home › Forums › Theme support › New Version of Tripsters with PHP 7.4.4 › Reply To: New Version of Tripsters with PHP 7.4.4
Hi. Thank for your reply. I didn’t have the way to turn of the warnings, but since you said the warnings aren’t a concern, I did some more research found I could turn off the warnings by editing my wp-config.php file.
Based on that, I replaced this line:
define(‘WP_DEBUG’, false);
with this:
ini_set(‘display_errors’,’Off’);
ini_set(‘error_reporting’, E_ALL );
define(‘WP_DEBUG’, false);
define(‘WP_DEBUG_DISPLAY’, false);
I did that and all looks fine now. Is that the solution you were going to suggest? And is that fine as a long-term solution? Thanks!