Title: Multisite network support?
Last modified: June 29, 2021

---

# Multisite network support?

 *  Resolved [Jason](https://wordpress.org/support/users/zushiba/)
 * (@zushiba)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/multisite-network-support-8/)
 * Do you have any plans to support multisite networks? I’d like to be able to enable
   an alert across an entire network in one location instead of visiting every site
   on the network and configuring the same message.

Viewing 1 replies (of 1 total)

 *  Plugin Author [WPExplorer](https://wordpress.org/support/users/wpexplorer/)
 * (@wpexplorer)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/multisite-network-support-8/#post-14613255)
 * Hi Jason,
 * This is AJ the plugin author. I can look into adding some sort of checkbox to
   the Network Admin settings page so that the plugin will only display the Customizer
   settings for the main blog and use those settings for all subsites.
 * For the meantime there are 3 ways you can hook into the plugin to alter the message
   for your needs.
 * 1. You could use the plugin hooks to filter the message for all sites. Example:
 *     ```
       add_filter( 'easy_notification_bar_message', function( $message ) {
       	$message = 'Your Custom Mesage';
       	return $message;
       } );
       ```
   
 * 2. You could hook into the default settings to override the default message unless
   one is set for that specific site. Example:
 *     ```
       add_filter( 'easy_notification_bar_default_settings', function( $settings ) {
       	$settings['message'] = 'Your Default Mesage';
       	return $settings;
       } );
       ```
   
 * 3. It would also be possible to hook into the settings to use the settings defined
   on the main site for all sub-sites like this:
 *     ```
       add_filter( 'easy_notification_bar_settings', function( $settings ) {
       	if ( is_multisite() && ! is_main_site() ) {
       		switch_to_blog( 1 );
       		return get_theme_mod( 'easy_nb' );
       		restore_current_blog();
       	}
       	return $settings;
       } );
       ```
   
 * The code should be added into a little custom plugin and network activated or
   added to your child theme if you are using the same child theme across the whole
   multisite.
 * – AJ

Viewing 1 replies (of 1 total)

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

 * ![](https://ps.w.org/easy-notification-bar/assets/icon-256x256.png?rev=2515988)
 * [Easy Notification Bar](https://wordpress.org/plugins/easy-notification-bar/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/easy-notification-bar/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/easy-notification-bar/)
 * [Active Topics](https://wordpress.org/support/plugin/easy-notification-bar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/easy-notification-bar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/easy-notification-bar/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [WPExplorer](https://wordpress.org/support/users/wpexplorer/)
 * Last activity: [4 years, 11 months ago](https://wordpress.org/support/topic/multisite-network-support-8/#post-14613255)
 * Status: resolved