AI Verified

Name

CLOUD Meister: Hide PlugIns

Language

PHP

Rating

Voted: 0 by 0 user(s)

Codevault

cloudmeister

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.1

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

History

Last modified:

11/01/2023

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

CLOUD Meister: Hide PlugIns

 
                    
1add_filter( 'all_plugins', function ( $plugins ) {
2 
3 $shouldHide = ! array_key_exists( 'show_all', $_GET );
4 if ( $shouldHide ) {
5 $hiddenPlugins = [
6 'error-log-monitor/cmx_plugin.php',
7 ];
8 foreach ( $hiddenPlugins as $hiddenPlugin ) {
9 unset( $plugins[ $hiddenPlugin ] );
10 }
11 }
12 return $plugins;
13 }
14);
15 
16// body.not-wlcms-admin table.plugins tr[data-slug*="white-label-cms"] {
17// display:none;
18// }

0

Related Snippets

Please see some snippets below related to this snippet..

WordPress Admin

AI Verified

1

Add Back Buttons to Edit Screens in WordPress Admin - AdminBackButton [SnipSnip.pro]

Added: 8 months ago

Last Updated: 6 months ago

Tired of searching your admin menus to find the parent of your current page? Yea, me too! It's time we.... Add Back Buttons to Edit Screens in the WordPress Admin... or at least try to! - <a href="htt...

WordPress Admin

AI Verified

0

Add icons to the custom post types in the At a Glance Dashboard widget

Added: 8 months ago

Last Updated: 7 months ago

This snippet adds custom icons to your custom post type counters in the At a Glance widgets on your WordPress Dashboard. I have a snippet in my Codevault on how to add CPTs to this widget too.

WordPress Admin

AI Verified

0

Remove Code Snippets TinyMCE button

Added: 1 year ago

Last Updated: 1 year ago

Removes the Code Snippets button from the TinyMCE visual editor.

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WordPress Admin

AI Verified

1

Custom Login 4 Agencies

Added: 1 year ago

Last Updated: 1 year ago

Give your Clients a constant LogIn-Feeling with your CI You can: - add an Image from your Agency Site to the login.form - add a Link to/behind the Image - customize some border-color's - hide t...

WooCommerce

Unverified

0

CLOUD Meister: Checkout shipping inline

Added: 1 year ago

Last Updated: 1 year ago

WordPress Admin

AI Verified

0

enable autoupdater on specific time

Added: 1 year ago

Last Updated: 1 year ago

This enables the Autoupdater only between a specific time range.