Multisite Global Search

Easily search through all blogs into your WordPress Multisite posts by post title, post content or post author. Multisite Global Search doesn’t work with single WordPress installation and it must be activated for all sites using «network activate» in the plugins admin panel.

This plugin is based on my other global search plugin, WPMU Global Search. It has some new features but if you want to keep using the older version of WordPress MU, you can install my other plugin.

Currently in the following languages:

If you have created your own language pack, or have an update of an existing one, you can send gettext .po and .mo files to me so that I can bundle it into Multisite Global Search.

 

Requeriments

  • WordPress Multisite Installation.
  • MySQL 5.0.1 or greater.
  • The MySQL user needs to be assigned the ability to «create views» and «drop views» in WordPress database.
  • Permalink structure must be diferent to default when widget is activated in a blog of your network.

Features

  • Search on posts and pages.
  • Put search form into your code.
    Multisite_Global_Search::ms_global_search_vertical_form(your_results_page)
    Multisite_Global_Search::ms_global_search_horizontal_form(your_results_page)
  • Insert search form in templates using a shortcode:
    [multisite_search_form]
  • Use type attribute to select vertical form or horizontal form. Default attribute value: vertical.
    Vertical Multisite Search Form 

    [multisite_search_form type="vertical"]

    Horizontal Multisite Search Form

    [multisite_search_form type="horizontal"]
  • Use page attribute to change results page URI. Default attribute value: globalsearch.
    [multisite_search_form page="multisite-search"]

    Search results will be showed in http://your_blog_URL/multisite-search.

  • Search results are showed in a page which contents the shortcode:
    [multisite_search_result]
  • Show excerpted results:
    [multisite_search_result excerpt="yes"]
  • Multisite Global Search Widget. Show a search form in your sidebar.
  • Customizable relative URI for results page.

  • Two different form types, vertical and horizontal.
  • Search across all network blogs or only in your blogs if you are logged.

  • Entries on every site across your installation appear in search results immediately after publication.
  • Receive results from your complete blog network, even sites you do not own or control.
  • Customizable style sheet for widget and results page.

Download

Download the plugin from the WordPress Plugin Repository: http://wordpress.org/extend/plugins/multisite-global-search/

If plugin works in your WP version, send your vote and push works in the compatibility form.

144 comentarios en «Multisite Global Search»

  1. Hola Aliciia,

    Antes que nada gracias por hacer un plugin que es único, ningun otro da esta funcionalidad.

    La cuestión es que al restaurar la base de datos de un WordPress Multisite hay 3 tablas v_posts, v_comments y v_postmeta que no se crean y que son de tu plugin.

    La cuestión es que ahora el plugin no funciona y me gustaría crear las tablas pero desconozco su estructura, puedo consultarlo en algún lugar.

    Gracias!

  2. Hello Alicia !
    The languages aren’t contained in the archive. Do you know how i can access to the french translation ?

    Thanks a lot for this plugin !
    Cyprien

  3. @Cyprien Sorry, I don’t know why the translation files are not in the archive. I’ve just resolved the problem. Version 1.2.7 include all translation files: French, German, Norwegian, Portuguese, Romanian and Russian.

    Thanks!
    Alicia

  4. Hi,

    I installed the plugin and had several days of successful use, now after adding a few pages (maybe unrelated) I always get a search not found result. I added a «Search Everything» plugin but deactivated it.

    This happened to me once before on another installation where the Global Search plugin just stopped working. Any ideas or suggestions?

    Frank

  5. I got the plugin working again after reinstalling a couple times.

    A couple questions, I get no results when I use multiple terms, is this usual.

    Second is there any way together search term highlighting.

    Frank

  6. I installed Multisite Global Search, and set it to search on pages, but it’s only searching on some pages. Basically, am using WPMU to create a site similar to etsy.com, so using the MarketPress Theme for eCommerce. MarketPress let’s you create Products, and my understanding is that each Product is a separate Page. Multisite Global Search is searching regular pages, but not Product pages (which is what I need).

    Any help appreciated,

    Thanks,

    Don

  7. 414-531-0219 :
    I installed Multisite Global Search, and set it to search on pages, but it’s only searching on some pages. Basically, am using WPMU to create a site similar to etsy.com, so using the MarketPress Theme for eCommerce. MarketPress let’s you create Products, and my understanding is that each Product is a separate Page. Multisite Global Search is searching regular pages, but not Product pages (which is what I need).
    Any help appreciated,
    Thanks,
    Don

  8. Hi,
    Thanks for great plugin.
    I find when doing a search for keyword1 keyword2 it only returns exact matches as if I’m searching for a phrase even without using quotes. So if an article is like «keyword1 keyword3 keyword2» it won’t be included in the result.
    Is there an easy way to fix that?

    Thank you

  9. @414-531-0219 Edit line 185 and 187 of the file inc/shortcode.php

    Replace this:
    if(get_query_var( ‘msp’ )) {
    $post_type = «( post_type = ‘post’ OR post_type = ‘page’ )»;
    } else {
    $post_type = «post_type = ‘post'»;
    }

    For this:
    if(get_query_var( ‘msp’ )) {
    $post_type = «( post_type = ‘post’ OR post_type = ‘page’ OR post_type=’product’)»;
    } else {
    $post_type = «(post_type = ‘post’ OR post_type = ‘product’)»;
    }

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *