• Resolved featuremonkey

    (@featuremonkey)


    Is there a way to remove the message from console?

    Asset CleanUp: “LIVE MODE” (test mode is not enabled, thus, all the plugin changes are visible for everyone: you, the logged-in administrator and the regular visitors)

Viewing 1 replies (of 1 total)
  • Plugin Author Gabe Livan

    (@gabelivan)

    @featuremonkey you can remove the message from the console (note that it shows only for you, the logged-in administrator) by using the following snippet (e.g. in your functions.php from the Child theme or a custom plugin where you usually put your WordPress hooks):

    add_filter(‘wpacu_show_admin_console_notice’, ‘__return_false’);

    PS: Be careful if you copy and paste the snippet into your editor as the single quotes might be pasted differently in your editor. Just make sure there are single quotes there that are added to the PHP file.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove LIVE MODE Console Message’ is closed to new replies.