Hide PHP Warnings and Notices in WordPress Print

  • 0

From time to time you may see some PHP notices and warnings on your pages. These are not generated by DOWO Digital, but rather by a theme or plugin installed in your WordPress installation.

Most of the time these are nothing to worry about, and can even be generated because the developer has to keep compatibility with older versions of WordPress as well as older PHP versions.

To turn them off set the following values in your wp-config.php file:

ini_set('log_errors','On');
ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);

If you are still having issues please contact technical.support@dowo.digital


Was this answer helpful?

« Back