Print this page
Monday, 21 January 2019 07:00

How to Disable WordPress PHP Error Messages

Rate this item
(16 votes)

WordPress has a built-in method of debugging that works great for developers. It offers a warning message detailing what file is at fault and what line to look at. However, this often looks terrible from a visitor perspective. It’s a WordPress error message that can easily dissuade people from coming back.

In this tutorial, I’m going to show you how to disable the warning message in WordPress when it comes to debugging. It’s a simple bit of code you can copy and paste into your website.

What Causes these PHP Error Messages?

A lot of the time, line warnings in PHP files happen because of outdated plugins or themes. This is because core files will often change with WordPress updates, which makes some parts of code obsolete.

Themes and plugins can also throw PHP warning messages when used with something that is incompatible. It’s possible for two current plugins which work well by themselves to have issues when paired together. This is because every developer is different, and not everyone uses the same syntax when developing website files.

Luckily, these warnings don’t necessarily mean the site is broken. They just look ugly to an unsuspecting visitor. Sometimes the developer will create an update to fix the warning, but it’s not always quick.

PHP warnings in WordPress look something like this:
“/wp-content/plugins/siteplugin.php on line 30”.

This doesn’t mean the plugin is bad. It just means part of the file is incompatible with WordPress, the theme or another plugin that is in use.

Unless you plan on fixing the coding yourself, it’s probably better to simply disable the warning messages altogether. If the tool isn’t completely broken or unusable, then the warning may not completely apply to you.

Hiding the WordPress PHP Warnings

This next part involves editing the wp-config.php file of WordPress.

I strongly suggest you create a backup of your site before making any coding changes. This will protect you in the event something goes wrong by giving you a quick method to restore the site.

You have several methods available for accessing the wp-config.php file of WordPress. A lot of people like using FTP applications like FileZilla to access website resources.

Access your website by clicking the “public_html” folder in the directory.

How to Disable WordPress PHP Error Messages

Select the wp-config.php file and click, “View/Edit.”

How to Disable WordPress PHP Error Messages

Scroll down and find the line that has this code:

define('WP_DEBUG', false);

How to Disable WordPress PHP Error Messages

You may see “true” instead of false. Either way, you’re looking for the “WP_DEBUG” portion of the wp-config.php file.

Replace the line with the following code:

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

How to Disable WordPress PHP Error Messages

Click the “File -> Save” button in the top left.

How to Disable WordPress PHP Error Messages

Once the file is saved, this will disable the PHP warnings in WordPress.

Enabling Warning Messages

If you want to re-enable the PHP warning messages, edit these lines by pasting this instead:

define('WP_DEBUG', true);
define('WP_DEBUG_DISPLAY', true);

How to Disable WordPress PHP Error Messages

Customizing Your Website

Hiding WordPress warnings is only one piece of a massive customization puzzle within WordPress. With a simple copy-and-paste code, you can make a variety of changes without having previous experience in website development. Just make sure you’re copying good snippets of code. Something that is obsolete or improperly created could easily crash a website.

Read 5163 times Last modified on Friday, 19 June 2020 16:07
x

Looking for a FREE WooCommerce Theme?

WooVina is an intuitive & flexible, free WordPress theme offering deep integration with WooCommerce. 100% Love It Guarantee!