Problem
I have a WordPress template, which was working normally. At some point, without altering anything, the following error began to appear at the top of the page:
Debug Mode On
Array ( [page] => 0 [ad_listing] => [..]
What do I want?
At the moment I'm not too worried about the error, as I'll be able to resolve it later, but for now I'd like to disable debug mode, but I'm not getting it.
What have I tried?
define('WP_DEBUG', false);
in wp_config.php wp_debug_mode();
in wp_settings.php desativar debug mode no wordpress
, but I did not find anything that would help. Use define( 'SCRIPT_DEBUG', false );
and define( 'WP_DEBUG_DISPLAY', false);
however a new error appears:
Parse error: syntax error, unexpected '$table_prefix' (T_VARIABLE) in /home/barie742/public_html/recarga-de-toner-em-sao-paulo/wp-config.php on line 66
And at line 66 it is: $table_prefix = 'wp_';
@EDIT
The error was happening because of the lack of
;
, but even after adding themDEBUG MODE ON
keeps appearing.
Summary
I would just like to disable Debug Mode
in Wordpress.