Title: Toggle features?
Last modified: August 30, 2016

---

# Toggle features?

 *  Resolved [micvideo](https://wordpress.org/support/users/oceandigital/)
 * (@oceandigital)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/toggle-features/)
 * Is it possible to toggle the features of this plugin? I would like to turn off
   the favicon thing and select only what i need.
 * [https://wordpress.org/plugins/multisite-enhancements/](https://wordpress.org/plugins/multisite-enhancements/)

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

 *  [Andrea Whitmer](https://wordpress.org/support/users/nutsandboltsmedia/)
 * (@nutsandboltsmedia)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/toggle-features/#post-6676772)
 * +1. I was actually just thinking the same thing – the favicons are unnecessary
   and I’d love to have a way to disable them.
 *  Plugin Author [Frank Bueltge](https://wordpress.org/support/users/bueltge/)
 * (@bueltge)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/toggle-features/#post-6676814)
 * Yes, but not via settings page.
    You can use the hook `multisite_enhancements_autoload`
   to filter the included classes. Each class have a function.
 *  Plugin Author [Frank Bueltge](https://wordpress.org/support/users/bueltge/)
 * (@bueltge)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/toggle-features/#post-6676818)
 * As example plugin to unset the favicon feature:
 * You find this code, a example for download also in the dev repository: [https://github.com/bueltge/wordpress-multisite-enhancements/wiki/Remove-features](https://github.com/bueltge/wordpress-multisite-enhancements/wiki/Remove-features)
 *     ```
       <?php
       	/**
       	 * Plugin Name: Multisite Enhancements Add-on to remove features
       	 * Description: Thhis plugin remove features from the Multisite Enhancement plugin.
       	 * Plugin URI:  https://github.com/bueltge/WordPress-Multisite-Enhancements
       	 * Version:     2015-12-03
       	 * Author:      Frank Bültge
       	 * Author URI:  http://bueltge.de
       	 * License:     GPLv2+
       	 * License URI: ./assets/LICENSE
       	 * Text Domain: multisite_enhancements
       	 * Domain Path: /languages
       	 * Network:     true
       	 */
   
       	! defined( 'ABSPATH' ) and exit;
   
       	add_filter( 'multisite_enhancements_autoload', function ( $files ) {
   
       		// Unset the favicon-feature, file class-add-admin-favicon.php.
       		unset( $files[ 0 ] );
   
       		/**
       		 * Current are this possible.
       		 *
       		 *  0 => inc/autoload/class-add-admin-favicon.php'
       		 *  1 => inc/autoload/class-add-blog-id.php'
       		 *  2 => inc/autoload/class-add-plugin-list.php'
       		 *  3 => inc/autoload/class-add-site-status-labels.php'
       		 *  4 => inc/autoload/class-add-theme-list.php'
       		 *  5 => inc/autoload/class-admin-bar-tweaks.php'
       		 *  6 => inc/autoload/class-change-footer-text.php'
       		 *  7 => inc/autoload/class-core.php'
       		 *  8 => inc/autoload/class-filtering-plugins.php'
       		 *  9 => inc/autoload/class-multisite-add-new-plugin.php'
       		 * 10 => inc/autoload/core.php'
       		 */
   
       		return $files;
       	} );
       ```
   

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

The topic ‘Toggle features?’ is closed to new replies.

 * ![](https://ps.w.org/multisite-enhancements/assets/icon-256x256.png?rev=1429634)
 * [Multisite Enhancements](https://wordpress.org/plugins/multisite-enhancements/)
 * [Support Threads](https://wordpress.org/support/plugin/multisite-enhancements/)
 * [Active Topics](https://wordpress.org/support/plugin/multisite-enhancements/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/multisite-enhancements/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/multisite-enhancements/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [Frank Bueltge](https://wordpress.org/support/users/bueltge/)
 * Last activity: [10 years, 6 months ago](https://wordpress.org/support/topic/toggle-features/#post-6676818)
 * Status: resolved