mattheu / MinQueue

WordPress Plugin: Minify and concatenate enqueued scripts and styles
60 stars 18 forks source link

Add a filter so that you can hide admin notification #23

Open khromov opened 10 years ago

khromov commented 10 years ago

The admin notification "MinQueue helper is currently active" can be pretty annoying. I propose we add a filter to let theme authors and plugin developers remove this notice from the admin dashboard.

Here is how you would hide the notification with the proposed change, from a plugin or theme:

add_filter('minqueue_disable_helper_notice', function($var) {
    return true;
});