minQueue Notifications
-
Hey – I seriously love this plugin – it provides me with the power to order, minify and stick all my scripts and styles into single large files – allowing me to work on unminified versions locally.. and not need to compile minified versions to upload – ideal!
It also does what W3TC a BWPMinify can never do – and that’s minify all the scripts into a single file without causing dependency or order based issues.
To be picky – there is one thing that bothers me – WPMU does it far too often ( an extreme example ) – they add notifications to all WP admin screens when it’s not really required.
Perhaps your notice about the helper function being active is not really “so” important that it should be stuck at the top of all pages – simple fix would be something like:
class.minqueue-admin.php:320
function display_admin_notices() { $current_screen = get_current_screen(); if ( 'settings_page_minqueue' == $current_screen->id ) { // show reminder about helper ## if ( isset( $this->options['helper'] ) && $this->options['helper'] === true ) { $this->admin_notices->add_notice( 'MinQueue helper is currently active', true ); } // hide plugin activation notice ## $this->admin_notices->delete_notice( 'minqueue_min_activation_notice' ); } }
Thanks for all your hard work – this is well written, well planned and nicely executed plugin!
Ray
- The topic ‘minQueue Notifications’ is closed to new replies.