Title: Multisite Support?
Last modified: August 31, 2016

---

# Multisite Support?

 *  [Steve](https://wordpress.org/support/users/srg-1/)
 * (@srg-1)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/multisite-support-162/)
 * Hello,
 * How does this plugin work with Multisite? Does it display the debug bar to all
   site admins, or only the net admin?
 * Thanks
 * [https://wordpress.org/plugins/debug-bar/](https://wordpress.org/plugins/debug-bar/)

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [Juliette Reinders Folmer](https://wordpress.org/support/users/jrf/)
 * (@jrf)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/multisite-support-162/#post-9254432)
 * Just in case you’re still wondering – or for the next person who has the same
   question -:
 * The Debug Bar in a multi-site setup will show only to super admins.
 * Since version 0.9, however, you can selectively overrule this using the `debug_bar_enable`
   filter.
 * In code, this would be something like:
 *     ```
       // Make sure you add this filter before the <code>admin_bar_init</code> action is run!
       add_filter( 'debug_bar_enable', 'my_debug_bar_enabler' );
   
       function my_debug_bar_enable( $enabled ) {
       	if ( current_user_can( 'manage_options' ) ) {
       		$enabled = true;
       	}
   
       	return $enabled;
       }
       ```
   
 * Hope this helps 😉

Viewing 1 replies (of 1 total)

The topic ‘Multisite Support?’ is closed to new replies.

 * ![](https://ps.w.org/debug-bar/assets/icon.svg?rev=3050748)
 * [Debug Bar](https://wordpress.org/plugins/debug-bar/)
 * [Support Threads](https://wordpress.org/support/plugin/debug-bar/)
 * [Active Topics](https://wordpress.org/support/plugin/debug-bar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/debug-bar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/debug-bar/reviews/)

## Tags

 * [multisite](https://wordpress.org/support/topic-tag/multisite/)

 * 1 reply
 * 2 participants
 * Last reply from: [Juliette Reinders Folmer](https://wordpress.org/support/users/jrf/)
 * Last activity: [8 years, 10 months ago](https://wordpress.org/support/topic/multisite-support-162/#post-9254432)
 * Status: not resolved