1. Home
  2. Getting Started
  3. Remove Warnings & Errors

Remove Warnings & Errors

Sometimes when you install WordPress and Wyzi theme, or actually any theme, some Warnings and Errors like the following may appear on your website.

warnings



To get rid of such warnings and errors, you need to make sure that debug is off. You need to add the following code in wp-config.php of your WordPress file.

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




Was this article helpful to you? Yes No 1