Title: WordPress Multisite Wide
Last modified: August 21, 2016

---

# WordPress Multisite Wide

 *  [ivnus](https://wordpress.org/support/users/ivnus/)
 * (@ivnus)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/wordpress-multisite-wide/)
 * Does this plugin work across an entire network? So the search results are from
   all the network subsites? I’d be willing to take a stab if not. Where would I
   start to look? or I can provide coffee to make it happen 🙂
 * [http://wordpress.org/plugins/advanced-search-by-my-solr-server/](http://wordpress.org/plugins/advanced-search-by-my-solr-server/)

Viewing 1 replies (of 1 total)

 *  [zelle7](https://wordpress.org/support/users/zelle7/)
 * (@zelle7)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/wordpress-multisite-wide/#post-4023588)
 * I tried it on a simple multisite setup as a prototype. There is a problems with
   the permalinks on the main page, but I managed to make a workaround, so that 
   the guid is stored instead of the permalink on the main page.
    You have to change
   the mss_build_document function in “advanced-search-by-my-solr-server.inc.php”
   on line 206
 * change from
 *     ```
       $doc->setField( 'permalink', get_permalink( $post_info->ID ) );
       ```
   
 * to
 *     ```
       $permalink = "";
       if(is_main_site()){
          $permalink = $post_info->guid;
       } else {
          $permalink = get_permalink( $post_info->ID );
       }
       $doc->setField( 'permalink', $permalink );
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘WordPress Multisite Wide’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/advanced-search-by-my-solr-server.
   svg)
 * [Advanced Search by My Solr Server](https://wordpress.org/plugins/advanced-search-by-my-solr-server/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/advanced-search-by-my-solr-server/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/advanced-search-by-my-solr-server/)
 * [Active Topics](https://wordpress.org/support/plugin/advanced-search-by-my-solr-server/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/advanced-search-by-my-solr-server/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/advanced-search-by-my-solr-server/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [zelle7](https://wordpress.org/support/users/zelle7/)
 * Last activity: [12 years, 2 months ago](https://wordpress.org/support/topic/wordpress-multisite-wide/#post-4023588)
 * Status: not resolved