• Goodmorning,

    This morning I got this on my dashboard:

    Your version: 3.4.1
    New version: 3.4.2.2

    If you are not a developer, your theme/plugin author shipped with dev_mode on. Contact them to fix it, but in the meantime you can use our dev_mode disabler.

    What should I do?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Shahed

    (@shahedalam0)

    Add this in the functions.php or search redux_disable_dev_mode_plugin and you will get this plugin from wordpress.

    if ( ! function_exists( ‘redux_disable_dev_mode_plugin’ ) ) {
    function redux_disable_dev_mode_plugin( $redux ) {
    if ( $redux->args[‘opt_name’] != ‘redux_demo’ ) {
    $redux->args[‘dev_mode’] = false;
    }
    }

    add_action( ‘redux/construct’, ‘redux_disable_dev_mode_plugin’ );
    }

    Plugin Contributor Dōvy Paukstys

    (@dovyp)

    This means the developer of your product shipped with Dev_mode enabled. I’m sorry you’re going through that.

    Install this plugin and all will be right with the world again: https://www.ads-software.com/plugins/redux-developer-mode-disabler/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Great plugin’ is closed to new replies.