Title: Usage for specific plugin modules? (jetpack)
Last modified: September 1, 2016

---

# Usage for specific plugin modules? (jetpack)

 *  Resolved [sambodinho](https://wordpress.org/support/users/sambodinho/)
 * (@sambodinho)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/usage-for-specific-plugin-modules-jetpack/)
 * Hi,
    This plugin looks almost ideal. I’m trying to disable a specific jetpack
   module, and not the entire jetpack plugin, for a specific page. Is this possible
   with this plugin? Cheers, Sam
 * [https://wordpress.org/plugins/plugin-organizer/](https://wordpress.org/plugins/plugin-organizer/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/usage-for-specific-plugin-modules-jetpack/#post-7714152)
 * This plugin disables plugins. Not plugin modules. That is an entirely different
   animal.
 *  Thread Starter [sambodinho](https://wordpress.org/support/users/sambodinho/)
 * (@sambodinho)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/usage-for-specific-plugin-modules-jetpack/#post-7714197)
 * Cool, no worries, thanks for the swift response Jeff
 *  [netivity](https://wordpress.org/support/users/netivity/)
 * (@netivity)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/usage-for-specific-plugin-modules-jetpack/#post-8202557)
 * [@sambodinho](https://wordpress.org/support/users/sambodinho/)
 * You can do you by using this great piece of code…
 *     ```
       add_filter( 'jetpack_get_available_modules', 'prefix_hide_jetpack_modules' );
       /**
       * Disable all non-whitelisted jetpack modules.
       *
       * As it's written, this will allow all of the currently available Jetpack
       * modules to work display and be activated normally.
       *
       * If there's a module you'd like to disable, simply comment it out or remove it
       * from the whitelist and it will no longer be available for activation.
       *
       * @author WP Site Care
       * @link   http://www.wpsitecare.com/disable-jetpack-modules/
       * @param  array $modules the existing list of Jetpack modules
       * @return array $modules the amended list of Jetpack modules
       */
       function prefix_hide_jetpack_modules( $modules ) {
       	// A list of Jetpack modules which are allowed to activate.
       	$whitelist = array(
       		'enhanced-distribution',
       		'publicize',
       		'related-posts',
       		'stats',
       		'vaultpress',
       		'verification-tools',
       	);
   
       	return array_intersect_key( $modules, array_flip( $whitelist ) );
       }
       ```
   
 * Just list the Jetpack modules that you want to keep.
 * Courtesy of — [https://www.wpsitecare.com/disable-jetpack-modules/](https://www.wpsitecare.com/disable-jetpack-modules/)
 * take care,
 * Netivity
    -  This reply was modified 9 years, 8 months ago by [netivity](https://wordpress.org/support/users/netivity/).

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Usage for specific plugin modules? (jetpack)’ is closed to new replies.

 * ![](https://ps.w.org/plugin-organizer/assets/icon-256x256.png?rev=1786554)
 * [Plugin Organizer](https://wordpress.org/plugins/plugin-organizer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/plugin-organizer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/plugin-organizer/)
 * [Active Topics](https://wordpress.org/support/plugin/plugin-organizer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/plugin-organizer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/plugin-organizer/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [netivity](https://wordpress.org/support/users/netivity/)
 * Last activity: [9 years, 8 months ago](https://wordpress.org/support/topic/usage-for-specific-plugin-modules-jetpack/#post-8202557)
 * Status: resolved