I’ve downloaded Redux from WP plugin repo. It tells me that the dev_mode
is on
and that I don’t have the latest Redux build. I’ve turned off
the dev_mode
in sample-config
and barebones-config
and nothing changed.
It works, when I install the dev mode disabler plugin, but I don’t want to have to ship it off to users together with the framework itself. I tried copying the code from the disabler plugin into my functions.php
and no luck.
Any ideas?
Find this:
inside your default
setArguements()
functionand change the parameter to
true/false
as you like.Go to your configation page and make
'dev_mode' => false
.It will not exactly work if
WP_DEBUG
isTrue
in yourwp-config.php
file.If you want to disable the Developer Mood in Redux then first set the
WP_DEBUG
tofalse
, then go toconfig.php
( whatever you name your configuration file ) and set'dev_mode' => false
.