Tutorials for web designers and developers
Tutorials for Developers_

Solved: How to remove warnings and notices in WordPress?

how to remove warning and notices in wordpress
  1. Install any “file manager” plugin in WordPress
  2. Open your “wp-config.php” it is present in public_html or in your WordPress root directory
  3. Copy/paste following code before “/* That’s all, stop editing! Happy blogging. */
ini_set(‘display_errors’,’Off’);
ini_set(‘error_reporting’, E_ALL );
define(‘WP_DEBUG’, false);
define(‘WP_DEBUG_DISPLAY’, false);

Done. All warnings and notices are gone.

Still having issues? Hire me on Upwork: https://www.upwork.com/fl/hfarazm

Leave a Reply

Your email address will not be published. Required fields are marked *