Disable Other Plugin Notices groups admin notices from other plugins and themes into one collapsed panel — while WordPress core notices stay exactly where they are. Nothing deleted, nothing silenced. Just tidied.
30 seconds: three other-plugin notices go from cluttering the top of the screen to one collapsed panel. Watch on YouTube →
Everything WordPress prints stays put. Everything a plugin or theme prints gets folded into one line you can open when you actually want it.
Most notice-hiding tools match CSS classes or scrape text — easy for a plugin to dodge, and easy to catch a core notice by accident. This one asks a more direct question.
Hooks in after every plugin has had the chance to add its own admin notices, right before WordPress prints them.
Uses Reflection to find the file each notice callback was actually declared in — the source of truth, not a guess from markup.
wp-admin/ and wp-includes/ callbacks are left alone. Everything else — plugins, themes, mu-plugins, drop-ins — goes in the panel.
Not on the WordPress.org repository — install it directly:
disable-other-plugin-notices folder to /wp-content/plugins/.To turn grouping off for your own account, open Screen Options at the top right of any admin screen with grouped notices, clear the checkbox, and click Apply. It's a per-user setting.
From here on, updates show up on the Plugins screen the normal way: the plugin checks this repository's releases and offers a one-click update, just like a WordPress.org plugin.
Four filters, no settings page.
add_filter( 'dopn_collapse_notice', function ( $collapse, $source ) {
if ( false !== strpos( $source, '/plugins/my-important-plugin/' ) ) {
return false; // keep this one out of the panel
}
return $collapse;
}, 10, 2 );
Also available: dopn_grouping_enabled, dopn_panel_open, and dopn_show_screen_option. See the README for full signatures.
Jim Walker, better known online as The Hack Repair Guy, is a website security expert and the founder of HackRepair.com. Based in San Diego, Jim has worked with website hosting, WordPress, malware removal, and website security for more than two decades.
He is known for helping website owners recover from hacked and compromised sites, explaining security issues in plain English, and sharing practical knowledge with the WordPress community. Jim is also active in the open-source and WordPress communities as @hackrepair.