During website development, developers enable a feature call WP_DEBUG mode, this allows developers to see certain warnings, notices or errors.
If debug mode is set to true for define and display these notices will be available to view by your website customers.
FILE: wp-config.php
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_DISPLAY', true );
If you disable ( set to false ) the WP_DEBUG mode these notices will not be available to view by your website customers.
define( 'WP_DEBUG', false );
define( 'WP_DEBUG_DISPLAY', false );
More information can be found here:
https://codex.wordpress.org/WP_DEBUG
If you find any warnings, notices or errors can you please provide the details to ExtensionWorks via Support.
If you find your warnings, errors are still visible after changing the define statement to false you can add this to your FILE: wp-config.php
// Disable the display of errors and warnings
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors',0);
Comments
0 comments
Article is closed for comments.