solutions for e-commerce

13 years of business 2560 reviews 4.9 average rating
Guides d'utilisation

Comment utiliser l'extension Elasticsearch ?

Elasticsearch est un moteur de recherches et de performances distribué en temps réel qui vous permet d'étudier vos données très rapidement. Il est utilisé pour des recherches plein-texte, structurées, pour les analyses ainsi que pour les trois à la fois.

Cet outil regroupe toutes ces fonctionnalités sur un serveur autonome avec lequel votre application peut communiquer via une API RESTful, en utilisant un client web via un langage de programmation ou encore en ligne de commande.

L'extension Enhanced Autocomplete va vous permettre de faire le lien entre le moteur de recherche et Magento.

Vous pouvez trouver plus d'informations sur le produit ici :

ETAPE 1 : Installez et exécutez le serveur Elasticsearch

Comme le conseille Elastic, "le meilleur moyen de voir ce qu'Elasticsearch peut faire pour vous c'est de le tester".

Afin de pouvoir utiliser l'extension Enhanced Autocomplete et accéder au serveur, vous devez avant tout avoir une version récente de Java. Vous pouvez facilement installer la dernière version de Java depuis www.java.com.

Ensuite, vous allez pouvoir installer et exécuter le moteur Elasticsearch en suivant les quelques étapes ci-dessous.

Installez Elasticsearch

Vous pouvez maintenant télécharger la dernière version d'Elasticsearch compatible avec notre module depuis elastic.co/downloads/elasticsearch.

Une fois téléchargée, vous pouvez extraire les fichiers de l'archive.

Elasticsearch est enfin prêt à être exécuté.

Exécutez Elasticsearch

Afin d'exécuter Elasticsearch, ouvrez une nouvelle console et exécutez la commande suivante :

cd elasticsearch-<version>./bin/elasticsearch

Si vous exécutez Elasticsearch sur Windows, utilisez simplement la commande suivante :

bin\elasticsearch.bat

Testez Elasticsearch

Vous pouvez facilement tester si Elasticsearch est accessible en ouvrant une nouvelle console et en exécutant :

curl 'http://localhost:9200/?pretty'

Vous devriez alors obtenir :

Elasticsearch est alors en cours d'exécution.

Vous pouvez aussi jeter un œil à la documentation officielle pour installer Elasticsearch. 

ETAPE 2 : Activez la recherche Elasticsearch

Afin de configurer Enhanced Autocomplete de manière générale, allez dans :
SystemConfigurationCatalog Catalog Search

Configurez les paramètres généraux

Dans l'onglet Catalog Search, vous pouvez choisir Elasticsearch comme moteur de recherche.

En choisissant cette option, d'autres paramètres doivent s'afficher :

  • Enable Debug Mode
    Affiche des messages d'erreurs potentielles sur le frontend.
  • Enable Suggestion
    Affiche une suggestion si le moteur de recherche détecte une meilleure requête (Option "Did you mean?").

  • Servers
    Il s'agit des serveurs à définir tel que host:port et à séparer avec une virgule.
    Pour tester la connexion, cliquez sur Check Servers
  • Verify Host
    Vous pouvez définir cette option sur NO si vous n'avez pas de certificat SSL valide.
  • Server Timeout
    Il s'agit du nombre de secondes après que le temps prévu soit dépassé pour chaque requête. Si vous utilisez la réindexation de fichier, une grande valeur est requise.
  • Index Prefix
    Définissez un préfixe pour les noms d'index afin d'éviter des conflits potentiels.
  • Number of Shards
    Plus le nombre est grand, mieux sera la performance d’indexation. Cela permet aussi de distribuer un index important à travers les machines.
  • Number of Replicas
    Plus le nombre est grand, mieux sera la performance de recherche.
  • Safe Reindex
    Vous pouvez préalablement reindexer dans un fichier temporaire. Utile pour les catalogues de produits importants.

  • Query Operator
    Par défaut, l'opérateur est sur AND. Par exemple, avec l'opérateur AND, la requête est traduite telle que "digital AND camera", avec l'opérateur OR, elle est traduite en "digital OR camera". Vous pourriez avoir moins de résultats avec l'opérateur AND mais ils seront plus pertinents.
  • Enable Source Storage
    Vous pouvez stocker les données sources sur Elasticsearch. Gardez ce paramètre sur No pour de meilleures performances. Si l'autocomplete rapide est activée, il sera automatiquement sur Yes.
  • Enable Fuzzy Query
    Vous pouvez activer la recherche approximative.
  • Fuzzy Query Mode
    Vous avez la possibilité de choisir le niveau d'approximation. Par exemple :
    0, 1, 2 : la distance de Levenshtein maximum autorisée.
    AUTO : devrait être la valeur sélectionnée. Cela génère une distance basée sur la longueur du terme.
    Pour les longueurs :
    0..2 : doit parfaitement correspondre
    3..5 : une modification autorisée
    >5 : deux modifications autorisées
Jetez un œil à la documentation pour le mode Fuzzy query.

  • Display in stock product first
    Lorsque cette option est activée, les produits en rupture de stock seront affchés après les produits en stock.
  • Additional sort attribute
    Vous pouvez définir un attribut de tri supplémentaire, par exemple :
    price
    De cette façon, dans l'autocomplete, les produits seront triés par le score qu'ils obtiennent et par l'attribut supplémentaire.

  • Additional sort attribute order
    Lors de la sélection d'un attribut de tri supplémentaire, choisissez s'il sera trié par ordre ascendant ou descendant.

  • Analyze SKUs
    Lorsque le mode Fuzzy Query est activé, vous avez la possibilité d'analyser les SKUs. Les SKUs seront analysés comme tous les autres produits. C'est utile lorsque les SKUs sont composés de plusieurs valeurs, par exemple : XXX-YYY-ZZZ. Si vous ne souhaitez pas analyser les SKUs, alors l'attribut SKU est considéré comme un simple mot.

Gérez vos index

L'extension Enhanced Autocomplete ajoute 3 nouveaux index que vous pouvez retrouver dans :
SystemIndex Management

  • Elasticsearch Product
    Reconstruit l'index de recherche plein-texte de produits
  • Elasticsearch Category
    Reconstruit l'index de recherche plein-texte de catégories
  • Elasticsearch CMS Pages
    Reconstruit l'index de recherche plein-texte de pages CMS

Vous pouvez facilement réindexer vos données en sélectionnant ces 3 index et en cliquant sur Submit.

Notez que vous pouvez indexer chacun de vos attributs. Pour ça, vous devez le rendre searchable.

ETAPE 3 : Configurez votre recherche avec Elasticsearch

Vous pouvez désormais configurer votre recherche dans :
SystemConfigurationWYOMIND Elasticsearch

Paramètres généraux

Dans le sous-onglet General Settings, vous pourrez activer l'option Enable Response Header. Ceci activera une entête pour vous aider à corriger d'éventuelles erreurs.

Paramètres de l'autocomplete

Par défaut, l'autocomplete affichera les termes de suggestions pour votre recherche.

Vous pouvez choisir d'activer l'autocomplete en définissant Enable Autocomplete sur Yes dans le but de réécrire la saisie par défaut et d'afficher les produits directement.

Si l'autocomplete est activée, 2 paramètres sont ajoutés à la configuration :

  • Enable Fast Autocomplete
    Utilisez la saisie rapide (charge durant l'indexation).
  • Autocomplete labels
    Vous pouvez aussi définir une traduction pour chaque texte de l'autocomplete ainsi qu'ajouter de nouveaux titres.
    Cette option est très utile si votre site est disponible dans plusieurs langues. Vous pouvez alors changer la vue magasin, par exemple la vue française, et traduire chaque texte de l'autocomplete en français.
  • Enable Autocomplete Suggestions
    Vous pouvez activer les suggestions dans l'autocomplete (Do you mean?).
  • Suggestions limit
    Définissez le nombre maximum de résultats affichés. 

Voici ce que vous devriez obtenir avec la configuration ci-dessus :

Paramètres des produits

Avec l'extension Enhanced Autocomplete, vous pouvez rendre vos produits disponibles pour la recherche dans l'autocomplete. Plusieurs options existent afin d'améliorer votre recherche.

  • Enable Auto Redirect
    Si seulement 1 résultat correspond à votre requête, l'utilisateur sera automatiquement redirigé sur la page du produit.
  • Enable in Autocomplete
    Si activé, les produits seront disponibles pour la recherche dans l'autocomplete.
  • Autocomplete Limit
    Définissez le nombre de résultats maximum affichés dans l'autocomplete. 
  • Display image
    Affichez les images des produits dans l'autocomplete.
  • Image Size
    Définissez la taille des images dans les résultats de la saisie en pixels. Par défaut, la taille est 50 pixel.
  • Enable Thumbnails Generation
    Activez cette option si vous souhaitez générer les miniatures des produits. Ils seront générés durant l'indexation et vont augmenter le temps d'exécution. Notez que ceci impacte seulement le premier processus d'indexation puisque les miniatures sont mises en cache pour les prochaines indexations. Si cette option est désactivée, les images uploadées seront utilisées sans aucune charge durant le temps d'indexation cependant les grandes images peuvent être chargées dans l'autocomplete.
  • Index product custom options
    Product custom options will be indexed and searchable. This requires a new indexation.

Paramètres des catégories

Vous pouvez activer la recherche sur les catégories en définissant Enable Category Search sur Yes. Si cette option est activée, les catégories seront alors indexées dans Elasticsearch et des nouveaux paramètres seront ajoutés dans la configuration.

  • Enable in Search Results
    Si activée, les catégories seront aussi affichées dans la colonne de droite de la page de résultats de recherche.
  • Enable in Autocomplete
    Si activée, les catégories seront disponibles pour la recherche dans l'autocomplete.
  • Autocomplete Limit
    Définissez un nombre de résultats maximum affichés dans l'autocomplete.

  • Search Results Limit
    C'est le nombre maximum de résultats qui seront affichés dans la colonne de droite de la page de résultats de recherche. Notez que 0 ou vide signifie illimité.
  • Show Category Path
    Si activée, le chemin de catégorie sera affiché dans la colonne de droite de la page de résultats de recherche.
  • Searchable Attributes
    Définissez sur quels attributs catégories sont basées les requêtes. Par exemple, les attributs Description et Name.
  • Index Categories not included in the menu
    Vous avez aussi la possibilité d'indexer les catégories qui ne sont pas dans le menu. 

    Paramètres des pages CMS

    Vous pouvez activer la recherche sur les pages CMS en définissant Enable CMS Search sur Yes. Si cette option est activée, alors les pages CMS seront indexées dans Elasticsearch et de nouveaux paramètres sont ajoutés à la configuration.

    • Enable in Search Results
      Si activée, les pages CMS seront affichées dans la colonne de droite de la page de résultats de recherche.

    • Enable in Autocomplete
      Si activée, les pages CMS seront disponibles pour la recherche dans l'autocomplete.
    • Autocomplete Limit
      Définissez un nombre de résultats maximum affichés dans l'autocomplete.

    • Search Results Limit
      C'est le nombre maximum de résultats affichés dans la colonne de droite de la page de résultats de recherche. Notez que “0” ou vide signifie illimité.
    • Searchable Attributes
      Définissez sur quels attributs sont basées les recherches.
    • Excluded Pages
      Sélectionnez les pages CMS qui ne seront pas prises en compte pour la recherche.

    ETAPE 4 : Gérez le point pour affiner les résultats

    L'extension Enhanced Autocomplete vous permet de booster très facilement vos attributs produits et produits au niveau des résultats de recherche en leur attribuant un poids.

    Par attribut produit

    Afin de définir un poids pour chacun de vos attributs, allez dans :
    CatalogAttributes Manage ATTRIBUTES

    Éditez l'attribut que vous souhaitez. Puis dans l'onglet Properties et le sous-onglet Elasticsearch Settings, définissez une valeur entre 1 et 10 selon le poids que vous souhaitez assigner.

    Notez que la valeur la plus forte est 10.

    Par produit

    L'extension Elasticsearch vous permet de facilement augmenter la présence de certain produit dans les résultats de recherche.

    Pour affecter un poids à un produit allez dans :
    CATALOGMANAGE PRoductSEdit  Elasticsearch

    Notez que la valeur la plus forte est 10.

    Boostez vos résultats de recherche avec Enhanced Autocomplete !

    Bénéficiez d'une puissante saisie semi-automatique

    • Profitez d'une saisie semi-automatique très rapide
    • Améliorez l'expérience utilisateur avec les suggestions automatiques (fonction "Did you mean?")
    • Ciblez les recherches sur les produits, catégories et pages CMS

    Boostez vos attributs produits

    • Attribuez un poids à chacun de vos attributs
    • Pointez les recherches sur les options des attributs

    Gérez vos index facilement

    • Utilisez l'indexation ultra rapide
    • Gérez des milliers de produits naturellement

    Configurez complètement votre extension Elastic Search

    • Définissez une configuration spécifique à chaque vue de magasin
    Freqently Asked Questions
    Informations Pré-vente
    Enhanced Autocomplete fonctionne avec Magento Community Edition et aussi Magento Enterprise Edition. Pour savoir si Enhanced Autocomplete est compatible avec votre version de Magento, veuillez vous référer à l'onglet Compatibilité

    Pour savoir avec quel serveur votre version d'Elasticsearch est compatible, veuillez vous référer au tableau ci-dessous:

    Module Magento Serveur Elasticsearch Librairie Elastica (comprise dans le module)
    v4.1 >= v1.7.0 v1.x / v2.x v3.2.x
    v4.2
    >= v4.3 v2.x / v5.x v5.0.0
    Licence et domaines

    Nous offrons à tous nos clients désireux de migrer leur licence Magento 1 vers une licence Magento 2, le transfert à un prix réduit. 

    Vous avez la possibilité de migrer votre licence directement depuis votre compte Wyomind dans :
    My accountLicenses & Downloads

    Cliquez sur migrate to magento 2  en face de l'extension et du domaine que vous souhaitez transférer. 

    Confirmez que vous souhaitez migrer votre licence vers une licence Magento 2 en cliquant sur Confirm and checkout .

    Une facture sera automatiquement ajoutée à votre compte dans : 
    My accountInvoices

      

    Le prix du transfert est équivalent à une réduction de 30% par rapport au prix d'une licence Magento 2.

    Vous pouvez procéder au paiement en cliquant sur PP .

    Une fois le paiement effectué, vous pouvez retourner dans : 
    My accountLicenses & Downloads

    Vous pourrez alors télécharger et installer votre licence pour Magento 2. 

    Notez que votre licence Magento 1 restera active indéfiniment dans votre compte Wyomind pour vous permettre de procéder à votre migration en toute sérénité.

    Votre licence est valide pour une durée illimitée sur une seule interface Magento.

    Si vous utilisez plusieurs interfaces Magento, il vous faudra acheter une licence supplémentaire pour chacune d'entre elles.

    Si vous gérez plusieurs sites sur la même interface Magento, vous n’aurez besoin que d’une seule licence pour l’ensemble de vos domaines. 

    Bien que la période de validité de votre licence soit illimitée, votre période de support est quant à elle limitée à 6 mois (durée offerte à l’achat de votre licence). Passé ce délai, il vous faudra la renouveler (voir FAQ : Comment prolonger ma période de support ?).

    Vous avez la possibilité de pré-enregistrer votre domaine de production à votre licence.

    Grâce à cette option vous pourrez installer et activer votre domaine afin qu'il soit prêt à l'emploi avant son lancement en ligne.

    Pour pré-enregistrer votre domaine :

    1. Allez dans :
      mY accountLicenses & DOwnloads
    2. Cliquez sur  à côté de l'extension pour laquelle vous souhaitez pré-enregistrer votre domaine.
    3. En bas de la page, sous votre liste de domaine se trouve un lien. Cliquez sur :
      Do you want to pre-register your domain in order to be ready to go live?
    4. Entrez votre nom de domaine puis cliquez sur PRE-REGISTER NOW  pour finaliser votre pré-enregistrement.
    Attention, cela ne veut pas dire que votre licence est activée. Il vous faudra l'activer depuis votre nouveau domaine une fois l'extension installée. 

    Votre licence est valide pour une durée illimitée sur une seule interface Magento.

    Il est possible, cependant, d'étendre ou de transférer votre licence dans deux cas : 

    • Si vous désirez ajouter vos environnements de test à votre licence.
      Dans ce cas, vous pouvez étendre votre licence gratuitement, et ce, pour un nombre illimité de domaines (dev, staging, local..).
      Ex: mywebsite-staging.com ou mywebsite-dev.com
    • Si vous souhaitez transférer votre licence sur un autre domain de production.
      Dans ce cas, la période de support pour la licence doit être active.

    Pour pouvoir utiliser Enhanced Autocomplete sur tous vos domaines (live et test), suivez les étapes ci-dessous :

    1. Téléchargez Enhanced Autocomplete depuis votre compte Wyomind.
      (voir FAQ: Téléchargement des extensions)
    2. Installez Enhanced Autocomplete sur votre environnement de production.
      (voir FAQ: Installation des extensions)
    3. Activez la licence.
      (voir FAQ: Activation des extensions)
    4. Depuis votre panneau d'administration Magento, entrez votre clé d'activation dans :
      Systemconfigurationwyomindyour extension 
    5. Sauvegardez la configuration.

    Maintenant que Enhanced Autocomplete est installé sur votre environnement de production, répétez les étapes précédentes avec votre environnement de test. 

    La seule différence cette fois : une notification apparaît dans votre panneau d’administration Magento.

    Vous aurez le choix entre :

    1. Acheter une nouvelle licence
    2. Ajouter ce domaine à votre licence

    Cliquez sur Add this domain to my license.

    Une demande de transfert sera envoyée directement à notre équipe (sous un délai d'une heure environ).

    Dès lors, que la demande de transfert est prise en charge par notre équipe, vous recevrez un mail de confirmation.

    Si votre demande est acceptée, vous pourrez aussitôt utiliser Enhanced Autocomplete sur vos deux domaines.

    L'ordre d'activation de votre licence n'a aucune importance. 
    Vous pouvez choisir d'activer d'abord votre licence sur votre environnement de production puis par la suite sur votre environnement de test, ou inversement. 
    Versionnage des extensions et téléchargement

      Pour télécharger Enhanced Autocomplete, connectez-vous à votre compte Wyomind :

        1. Allez dans :
          mon compte Licenses & downloads  
        2. Cliquez sur  en face de Enhanced Autocomplete.


          Une nouvelle fenêtre s'ouvre
          alors

        3. Sélectionnez la version de Enhanced Autocomplete à télécharger.
          Vous pourrez sélectionner la version la plus récente (pour Magento 1 et pour Magento 2) de Enhanced Autocomplete.
        4. Cliquez sur  .

      Votre téléchargement peut commencer. 

      En achetant une extension depuis wyomind.com, vous bénéficiez de la mise à jour à vie. Vous pouvez à tout moment télécharger la dernière version de l'extension directement depuis votre compte. 

      Pour mettre à jour Enhanced Autocomplete, suivez les étapes suivantes :

      1. Allez dans :
        mon comptemes téléchargementS
      2. Cliquez sur  en face de Enhanced Autocomplete.
      3. Sélectionnez la version la plus récente de Enhanced Autocomplete (pour Magento 1 et Magento 2).
      4. Cliquez sur télécharger .
      5. Installez la nouvelle version de Enhanced Autocomplete pour mettre à jour votre admin Magento.

      Installation/Désinstallation des extensions

      Pour désinstaller Enhanced Autocomplete, allez sur son dossier compressé et ouvrez-le.

      Vous y trouverez un fichier shell (tel que: yourextension-uninstall.sh), qu'il vous faudra exécuter à la fois sur votre serveur et sur le répertoire racine de votre site Magento. 

      Lorsque la désinstallation est terminée, pensez à nettoyer le cache et réactiver le compiler (si vous l'utilisez).

      Avant d'installer Enhanced Autocomplete, il vous faudra:

      • Faire un backup de votre installation Magento dans :
        system  tools   backups
      • Vérifier que le Compiler est désactivé dans votre admin Magento.
        Si le compiler est activé, désactivez le en cliquant sur Disable dans :
        system  tools   COMPILATIONS
      • Nettoyer votre cache dans :
        systemselect cache typeactionsrefreshsubmit
      • Si vous installez l'extension sur Magento Enterprise, il faut désactiver le module Enterprise_CatalogSearch, en modifiant la valeur TRUE à FALSE dans le fichier : 
        app/etc/modules/Enterprise_CatalogSearch.xml


      Vous pouvez maintenant installer Enhanced Autocomplete:

      1. Téléchargez Enhanced Autocomplete (fichier compressé) dans :
        mon compte mes téléchargements
        Consultez la FAQ: Téléchargement des extensions
      2. Ouvrez le dossier téléchargé et décompressez-le.
      3. Copiez le contenu du dossier et collez-le dans le répertoire racine de votre site Magento (le contenu varie selon les extensions mais on retrouve généralement les dossiers app, lib et skin).

      4. Une fois votre installation terminée, n'oubliez pas de réactiver le compiler s'il était activé avant l'installation et l'exécuter en cliquant sur Run Compilation Process.
      5. Nettoyez les caches et déconnectez-vous puis reconnectez-vous directement après.


      Enhanced Autocomplete installé, il ne vous reste plus qu’à activer votre licence. Cliquez ici: Activation des extensions

      Pour l'extension Enhanced Autocomplete, n'oubliez pas d'installer le serveur Elasticsearch. 

      Si vous utilisez le serveur Elasticsearch 2.x, il vous faudra ajouter le code suivant dans le fichier de configuration du server Elasticsearch elasticsearch.yml :

      script.engine.groovy.inline.search: on
      script.allowed_types: inline
      script.allowed_contexts: search, update

      Puis, redémarrer le serveur Elasticsearch.

      Activation des extensions

      Maintenant que Enhanced Autocomplete est installée, il ne vous reste qu'à l'activer :

      1. Allez dans votre admin Magento. Un message apparaît en haut de la page.
        Si vous ne voyez rien apparaître, vérifiez les éléments suivants : 

        Le module License Manager n'a pas été supprimé de votre installation.
        Le module License Manager est bien activé dans le fichier : app/etc/modules/Wyomind_Licensemanager.xml
        La sortie Html du module Wyomind_Licensemanager et/ou Adhminhtml_Notification n'est pas désactivée dans votre admin Magento :

        system   configuration  advanced advanced


      2. Copiez votre clé d'activation.

        Vous pouvez trouver votre clé d'activation à 2 endroits:
        - Dans l'email de confirmation que vous avez reçu suite à l'achat de Enhanced Autocomplete

        - Dans votre compte Wyomind : Mon compteMes Telechargements, choisissez Enhanced Autocomplete et cliquez sur  . Une nouvelle page s'ouvre où sera affichée votre clé d'activation (voir ci-dessous).

      3. Collez votre clé d'activation dans le champ Activation key et choisissez une méthode d'activation entre Automatic (Yes) et Manual (No) depuis: SystemConfigurationWyomindVOTRE extension
        - Si vous choisissez Yes: vous serez connecté automatiquement au serveur de licence de Wyomind.
        - Si vous choisissez No, vous devez vous connecter avec votre navigateur au serveur de licence de Wyomind.

      4. Sauvegardez les données en cliquant sur Save Configuration.
      5. Videz vos caches. 
      6. Une notification apparaît en haut de votre admin. Cliquez sur : Activate it now!

      7. Copiez et collez le code licence dans le champ License code de votre admin ou cliquez simplement sur Activate now! 


      8. Pour finir, déconnectez-vous, nettoyez les caches et reconnectez-vous pour pouvoir utiliser Enhanced Autocomplete.

      Afin d'activer la licence d'une extension qui comprend d'autres modules, vous devrez répéter les étapes ci-dessus pour chaque module en utilisant les clés d'activation correspondantes (chaque extension possède une clé d'activation unique).

      Utilisation des extensions

      Si vous souhaitez indexer un attribut en particulier dans la recherche, il doit être "searchable".

      Pour ça, allez dans :
      CatalogAttributesManage Attributes

      Cliquez sur l'attribut que vous souhaitez indexer, par exemple country_of_manufacture

      Pour l'option Use in Quick Search, choisissez Yes et sauvegardez l'attribut.

      Enfin, re-indexez vos produits.

      Résolutions de problèmes

      Si vous obtenez une page blanche en utilisant l'extension, vous devriez activer le rapport d'erreurs afin d'afficher l'erreur en question. Vous pouvez l'activer depuis index.php.

      La plupart du temps, vous déconnecter puis vous reconnecter résout le problème.

      Cette erreur signifie que le serveur Elastisearch n'est pas lancé.

      Vous devez alors vous assurer que le serveur Elasticsearch est installé et exécuté. Pour cela, vous pouvez suivre l'ETAPE 1.

      Magento 1 / Openmage Compatibility

      Magento 1 / Openmage®

      • 1.1.3
      • 1.1.4
      • 1.1.5
      • 1.1.6
      • 1.1.7
      • 1.1.8
      • 1.2.0
      • 1.2.1
      • 1.3.0
      • 1.3.1
      • 1.3.2
      • 1.3.3
      • 1.4.0
      • 1.4.1
      • 1.4.2
      • 1.5.0
      • 1.5.1
      • 1.6.0
      • 1.6.1
      • 1.6.2
      • 1.7.0
      • 1.8.0
      • 1.8.1
      • 1.9.0
      • 1.9.1
      • 1.9.2
      • 1.9.3
      • 1.9.4
      • 1.10.0
      • 1.10.1
      • 1.11.0
      • 1.11.1
      • 1.11.2
      • 1.12.0
      • 1.13.0
      • 1.13.1
      • 1.14.0
      • 1.14.1
      • 1.14.2
      • 1.14.3
      • 1.14.4

      Magento 1 / Openmage® Enterprise (deprecated)

      • 1.1.3
      • 1.1.4
      • 1.1.5
      • 1.1.6
      • 1.1.7
      • 1.1.8
      • 1.2.0
      • 1.2.1
      • 1.3.0
      • 1.3.1
      • 1.3.2
      • 1.3.3
      • 1.4.0
      • 1.4.1
      • 1.4.2
      • 1.5.0
      • 1.5.1
      • 1.6.0
      • 1.6.1
      • 1.6.2
      • 1.7.0
      • 1.8.0
      • 1.8.1
      • 1.9.0
      • 1.9.1
      • 1.9.2
      • 1.9.3
      • 1.9.4
      • 1.10.0
      • 1.10.1
      • 1.11.0
      • 1.11.1
      • 1.11.2
      • 1.12.0
      • 1.13.0
      • 1.13.1
      • 1.14.0
      • 1.14.1
      • 1.14.2
      • 1.14.3
      • 1.14.4
      User's reviews
      Log into your account to leave your review and get up to 3 months of free Support & Upgrade.

      25th June 2023

      A plus for my website!

      Very complete! Easy to configure and with many specificity options. A plus for my website!

      3rd May 2023

      A great extension, a must-have plugin to optimize and improve the customer's shopping experience.

      We have been using this extension for years with great results. Our customers are satisfied with the user experience, and the IT department considers it one of the most complete extensions for Magento 1, now migrated to OpenMage. Undoubtedly, a great purchase.

      21st November 2022

      Fantastic Plug In - Must Have!

      The support we have received from Wyomind since installing this plug in, has been second to none. The team are very responsive & quick to come back to me with any feedback. We have seen huge appreciation & use by our customers on the site.

      10th November 2022

      The best Extension

      The Wyomind Elastic Search module is a fantastic extension with speed and great results.

      Nick - Developer - User for more than 6 years |Magento 1|Magento 2

      9th September 2022

      Super intuitive search function

      We have been using Enhanced Autocomplete for several years now. We are really happy with it. Is works very fast in frontend and is easy for our customers to use. There are plenty of opportunities to promote the products you want for a given searchterm. So could recommend this to all magento 2 shops.

      15th August 2022

      Fantastic Plug In - Does what it says on the tin

      The Wyomind Elastic Search module is a fantastic addition to any magento 2 store with speed and great results. We have seen huge appreciation by our customers on the site.

      14th July 2022

      Very useful and powerful plugin

      We use this plugin with several projects in Magento 2 and Magento 1. The website visitor gets a very fast and well structured autocomplete result overview. The search works on products, categories and CMS pages and it has still a very fast indexation, even with several thousands products. Apart from that you can define a configuration specific to each store view. We also appreciate the very fast and professional customer support.

      1st July 2022

      Good extension

      Easy to use and search speed is so fast

      1st June 2022

      Ideal

      Very easy to use. This plugin has improve our conversion rate by 4%. The code is clean and the support is great. I would strongly recommend this plugin

      8th December 2021

      Great extension with fast search!

      The Wyomind Elastic Search module was a great addition with speed and good results. Appreciated by our customers on the site.

      Peter Herman - Ecommerce Agency - User for more than 3 years |Magento 2

      30th October 2021

      Very good extension

      i used magento 1 and also magento 2. Both versions make me feel very satisfied

      2nd June 2021

      Very simple and easy to use

      Great product - this help us to improve our conversion rate by 4%. I would strongly recommend this product for any magento 2 store. The documentation was very helpful and the code is clean. This has made our search box more intelligent which ultimates help the customers while shopping on our store. Enhanced Autocomplete plugin magento 2

      20th April 2021

      Helpful and efficient team

      The support is quick and efficient. Due to the optimization of the search settings, we were able to improve the search ergonomics of the website. The team is also helpful with the subsequent optimization of the search settings.

      13th April 2021

      This module has made our search functionality exactly as we wanted. Easy to integrate and provide great results.

      Using this extension since last year. No major issues. Support is great. Support replies are very fast which I don't see with any other Magento extension provider. Support not only fix bugs and issues related to their extension but also provides an overview to get better results according to our website to improve the user experience. The best thing about support is they are very smart and experienced in their fields.

      TB - Developer

      31st March 2021

      Great module for Magento 2

      This module has made our search life so much simpler. Great module to work with. Tks

      9th March 2021

      great plugin - still need to tweak it abit to match our needs

      I love to see how wyomind support clients with customization - its really great to have such an awesome support - top stars!

      idrees - Merchant

      5th March 2021

      Great module

      Elastic search has helped our customers a lot to find their products. Wyomind support has been helpful to resolve any issues we have found. We needed to customize the module to support requirements from the customer and support gave good inputs for us.

      Peter - Developer

      26th February 2021

      Great Extension

      We have used modules for Magento 1 and Magento 2. The first one was much much better and make search even now better as Magento 2 with new Elastic. Our wishes: decrease time to saving categories and more settings for elastic

      17th February 2021

      Very nice and Quick Search

      This is a must have search for your online M2 store. Very fast and functional search. I highly recomend this extension..

      9th January 2021

      Must have

      The module works perfectly, is better and cheaper than other searchers. I use several times the support and always resolve the problems. The searches have been optimized long after the installation of the module. Customers have told us that it works much better than before that we did not have this module.

      7th January 2021

      Must have

      The searches have been optimized long after the installation of the module. Customers have told us that it works much better than before that we did not have this module.

      Juan Noco - Developer

      5th January 2021

      The fastest search

      The modulo works perfectly, is better and cheaper than other searchers. I use several times the support and always resolve the problems.

      23rd December 2020

      Installed .. Configured.. works

      This extension is simple to install and configure and works pretty good. We have used this extension at many shops without any issue yet.

      Magentoagentur - Ecommerce Agency

      30th October 2020

      Very good extension with big potential to improvement

      We have used modules for Magento 1 and Magento 2. The first one was much much better and make search even now better as Magento 2 with new Elastic. Our wishes: decrease time to saving categories and more settings for elastic

      26th October 2020

      it's from the best Solution we have been used

      perfect Experience with perfect team support

      1st October 2020

      Perfect Search Extension

      It's a very nice and working extension for Magento 1.

      3rd September 2020

      Amazing module

      This module has made our search life so much simpler. Great module to work with.

      25th August 2020

      Great plug in that has improved CR

      Simple to configure and easy to tweak to get the best search results for customers.

      13th August 2020

      Realy Fast Search

      I used the module both for magento1 and magento2. For the magento1 version i think it was the best module. We did not have any issues or confilcts (only some minor conflicts with theme overrides). It worked ok with amasty layered navigation and in general it was perfect. On magento2 things were not that pretty. We had problems both with elastic search engine compatibility but the most important problem we had is that it is not compatible with amasty seo layered navigation for M2.

      3rd August 2020

      Great Extension

      We have recently purchased this product due to it's flexibility giving us a powerful search tool than we had on our magento 1 website. We have been impressed with the customisation the extension offers and look forward to fine tuning it to our needs. I'm sure we will recommend this extension to our partners.

      17th July 2020

      Great module for Magento 2

      Extension works great, thanks! Full configurable and stable.

      24th June 2020

      It has increased our sales and made customer experience better

      Installation of the module is simple thanks to the great user guide. Support has always been fast and very helpful

      Viktor D. - Developer

      21st June 2020

      Great search engine

      Previously I struggled for optimizing search engine for my store. Since I bought and used ElasticSearch, I am very satisfied with its search speed, my customers have responded well to this. When implementing the module, there were a few errors, but most of the support team solved the crucial problem. Good module, 6 months free support period is long enough to optimize the application. Thanks for everything.

      18th June 2020

      best module elastic

      module elastic is top

      4th June 2020

      Great plugin

      Used the extension for a magento site with great results

      Alex - Merchant

      24th March 2020

      Great plugin, really enhanced my website user experience

      The Elasticsearch Autocomplete module is great. It works seamlessly with Elastic Search and offers a really great addition to my website. Without a doubt this has contributed to a better UX and increased sales. I love the way it shows results from both products and pages and having the ability to gives specific products 'weight' in the search makes it super customisable. I would definitely recommend this to anyone.

      12th March 2020

      Very fast and comfortable extension

      We have been using it on our Magento 2 shop for last 2 years and its been improved a lot. Its improve the overall site speed of our page by dynamically loading the category since we have about 300 categories. Also its easy to set up and configurable! Thanks a lot!

      22nd January 2020

      Realy good extension and good support.

      Thanks for the extension.

      20th January 2020

      Excellent extension

      Saved a lot of time. Just install and start. Easy to use.

      Stefan

      16th January 2020

      A good solotion for fast searches

      elasticsearch is a nice fast addition to any webshop. This module has enough options to set properly. In addition, there are also sufficiently advanced options to adjust the search options on your site in detail.

      Rob

      26th November 2019

      Good extension that looks clean for UX on site

      Easy to configure plug in with good features. Customers enjoy using this search feature and also gives access to our helpful content pages in one place. Our search speed has also improved massively which is great. The layout is tidy and simple to use.

      12th November 2019

      A very good and excellent faster solution for searching.

      Really useful.I have done customization for module and with the help of extension provider I was able to resolve issue. Perform better than standard search and so it is a must-have extension. Elasticsearch® Autocomplete is an absolute must have for any store with an extensive product range. We have over 10,000 skus and the search results are fast and relevant. The installation was easy with no conflicts. The settings are easy to understand and configure.

      4th November 2019

      Very fast response with desired result

      search autocomplete is very fast, our customers can find the product easily form search. Installation is very easy and can fully maintain from admin. support multi-stores with different languages. support team is very fast to reply and guide. Highly recommended!

      21st October 2019

      Great Extension to let user search inside big catalogs!

      Installation is simple, the extension is really stable. We use it with "Cloud Elasticsearch" and it works really well. Perfom better than standard search and so it is a must-have extension. About "customizations" i can say that is really simple to personalize the "frontend" (the autocomplete lists).

      1st October 2019

      Awesome Extension and Support

      The Elastic Search is a MUST. Thank you Paul for all the help and support to get it working on our site!!!

      Slava

      5th September 2019

      A must have extension

      Must have extension, improves the search,the autocomplete and the performance. Really useful.I have done customization for module and with the help of extension provider I was able to resolve issue.The support of team is very responsive and helpful.

      5th August 2019

      Good module!

      The search input is a big step on a big website with lots of products. The Elasticsearch makes easy to find them.

      Xavi

      1st August 2019

      Best search ever!

      Adding ElasticSearch to our webshop made our search so much better! Thank you for that! We had a few issues with the setup. The Wyomind support helped us a lot. When we need more Magento 2 modules, we will search on the Wyomind website first.

      Hilbert

      31st July 2019

      Great module !

      This a realy great module, a game changer !

      Gilles

      31st July 2019

      Great module for integrating Elasticsearch with Magento 2

      We have been using Wyomind's modules for years, especially Elasticsearch and Simple Google Shopping. They're very quick to help you with any issues and their prices are reasonable. Would recommend them to any Magento 2 site.

      Zaq - Developer - User for more than 7 years |Magento 1|Magento 2

      30th July 2019

      Must have search extension!

      aeroflowperformanceElasticsearch® Autocomplete is an absolute must have for any store with an extensive product range. We have over 10,000 skus and the search results are fast and relevant. The installation was easy with no conflicts. The settings are easy to understand and configure. And the support team are very quick to answer and questions you may have.

      29th July 2019

      Great plugin for any Ecommerce site developed in Magento

      A very useful plugin to be used in Magento. Our customers love the autocomplete function and we have had a great CTR performance on it. Thank you for all the support.

      celeiropt

      26th July 2019

      The ease of use and setup is marvellous and any questions or issues are promptly answered by Wyomind's amazing support team.

      We have been using the Elasticsearch® Autocomplete extension from Wyomind since launching our site and we have to say it's greatly improved our search capabilities. Customers are now able to find exactly the products they are interested in, both quickly and efficiently. The ease of use and setup is marvellous and any questions or issues are promptly answered by Wyomind's amazing support team.

      Phil - Merchant

      18th July 2019

      Does exactly what it says

      This extension works great! It does exactly what it advertises. The autocomplete makes things super simple for our customers and I love that we can prioritize fields by weight.

      Galen - Merchant

      11th July 2019

      Very effective auto complete solution

      We have been using Elasticsearch Autocomplete for some time now on our website and we find it responsive and generates good auto complete suggestions. The extension was easy to install, reliable and has caused no conflicts. We have found Wyomind's support to be quick and very helpful on this and other extensions we have purchased.

      9th July 2019

      Great extension! great for sales

      this extension works great, and is great for sales!

      2nd July 2019

      The best solution for our stores

      Work very fast and it is compatible with many theme. You do not need to modify anything in CSS styles. I recommend highly. It works very well. 5/5

      Simon

      14th June 2019

      Our go to Elastic Search extension

      We use the Bubble Elastic Search and Bubblelayer in many of our shops. Works like a charm, basic and reliable.

      23rd May 2019

      Lots of features and amazing support

      A fully developed implementation of Elastic Search for Magento. I had an issue getting the extension communicating with Elastic Search on install and support was excellent. Highly recommended!

      Sparky

      14th May 2019

      The Best solution for stores

      This extension work really good. It works quickly and very smoothly. Compliant with ultimo template for Magento 1.9. Installation without problems and simple configuration. RECOMMEND! 10/10!

      Szymon

      8th May 2019

      Provides brilliant advanced search functionality to Magento 2

      This extension does wonders in improving the functionality of searching on Magento 2 websites. We have over 2,000 products with complex search terms and ElasticSearch does a great job at picking all these up. Makes it so much easier for our customers to find products.

      27th March 2019

      Best search extension for magento

      Standard Magento search engine isn't good. extension from wyomind boost my magento store to next level. Search results right now are very exact. This is for sure best extension for search for magento stores.

      22nd March 2019

      Great extension

      Really great extension, it works out of the box!!! I use it on many websites.

      Enrico - Developer

      15th March 2019

      The most useful extensions with the best support in the business

      We have so many choices for Partners on Magento, but Wyomind always produces top quality extensions that are backed by some of the best customer support in the industry!

      JCoop - Ecommerce Agency

      6th March 2019

      Great Addition to the Website

      I bought this extension on strong recommendation. Once installed (which was a fairly straight forward process) the elastic search worked without a glitch. This extension is easy to use but with the benefit of it being highly flexible with many of the options being tailorable to your specific needs. Highly Recommended!

      18th February 2019

      Great Support and extension

      We have been using the extension for few years now and it works great. It is fast with good results. Support from Paul is excellent, quick and always to the point. Highly recommended.

      Michal

      9th February 2019

      Very usefull

      The basic Magento search gives poor results, with that extension, we got good results, the support team is pretty good. It's easy to customize the frontend to have a great mini-search. The search result page is less useful that preview now.

      24th January 2019

      Great Search Extension

      We've found the Elasticsearch Autocomplete search extension for Magento to be an effective, feature rich search solution for our website which is great value for money. Setup was easy and we have found that our conversion rate and customer satisfaction has improved

      23rd January 2019

      Fantastic results

      It's one of the best extensions out there. Works right away out of the box. Easy to configure, accurate and it's fast! We didn't have any problems with our large catalogue of products. At the end of the day you want to deliver the best experience to your customers and Elasticsearch delivers.

      18th January 2019

      Excellent extension with great support

      We use the extension on our Magento 2.2.x website and it's really versatily and easy to use. It's footprint is quite small, it doesn't use many resources. Our customers always seem to find whatever they're looking for and our team as well as they can just easily search via the barcodes or SKUs. Support from Wyomind is superb, they always quick to reply and sort otu any issues we ever run into. I can't recommend this enough, it's a must have extension for any Magento store.

      17th January 2019

      Very good search extension

      We often used the elastic search extension for our Magento 1 customers and now we also used it for Magento 2. It works very great and is fast. The Support from Wyomind is always helpful and we used it a few times already.

      16th January 2019

      nap muc may in

      works very well

      30th November 2018

      Great Extension With Great Support 5 STAR Product

      We choose Elasticsearch extension for your our Magento2 Store and its working perfect as well as I take much support from them and getting best and fast solution and response from them. Developers are always ready to help in case of any problems so I will definitely recommend this extension for your store.

      15th November 2018

      Excellent extension, works smoothly

      full configurable and stable.

      Filipe Dietrich

      13th November 2018

      Works great

      extension works great, thanks! Setup is little bit complicated for us but extension is works very well. If you not happy with default search action on magento like us, you need this one!

      8th November 2018

      Working great

      This extension is working great ! The support answer very fast with right answer. I recommand it !

      7th November 2018

      Great functionality and easy to install

      Installing the extension was so easy and fast that we can only recommend it to anyone interested in a better search form than the one included in Magento. All functionalities work out of the box and is easy to integrate with Porto theme.

      5th November 2018

      Fantastic magento module

      great module for indexing and fast search between 60k products! I tested some cheaper alternatives but without success...

      ciamberl

      22nd October 2018

      High quality search extension

      This module is easy to install and configure and it deliver fast search results. Developers are always ready to help in case of some problems

      11th October 2018

      Overall great experience

      The functionality available is above expectations and the support is always great when you contact them, friendly and fast compared to other developers I have come across.

      Marco

      10th October 2018

      It Simply Works

      After installing the module, low and behold, it simply worked as advertised. No surprises!

      Satisfied Customer

      2nd October 2018

      Our choice for Magento ElasticSearch

      We, as an agency, have tried multiple search extensions and Wyomind Elasticsearch extension is our choice for M1. Easy to work and auto-correct functionality works exactly where it is needed - in the quick-search.

      28th September 2018

      Wyomind delivers great Magento extensions

      Wyomind delivered high quality extensions for our Magento 2.1 based webstore. Their support is extremely helpful and what is more important the response time is usually 1-3 hours. I highly recommend them if you dont want to wait hours for a reply from support center in Asia as many other magento development do.

      Marcin - User for more than 6 years |Magento 2

      26th September 2018

      Easy to install and use

      We have been using Bubbleshop Elastic Search together with the layered navigation for several customers with hardly any problems whatsoever. I would recommend this extension to anyone looking to upgrade from the standard search modules like Sphinx.

      26th September 2018

      Excellent search system

      It is the best search system. It is the fastest of all the systems I have tested, with an easy installation and configuration system, but incredibly scalable. I have over 10,000 products in my catalog, and Elasticsearch provides a quick response to product inquiries in my online store. On the other hand, Wyomind's support service is very correct. The quality/price ratio is very good.

      Paco Calvo Savall

      18th September 2018

      Great Module

      Code is extremely clean and stable. Very easy to work with! The support team is prompt and professional, and is happy to assist you with getting things to perform the way you would like to maximize the value of the module. Elastic search is a must have, and no need to look any further than here... Can't beat the price & the quality.

      6th September 2018

      Fastest search extension available

      Tried Sphinx Search extensions, and they all struggled at 50,000+ products... Then noticed everyone that previously developed Sphinxsearch extensions for M1 moved to Elasticsearch with Magento 2.x... However, no reputable ones, but Wyomind, developed anything using Elasticsearch for Magento 1.x ... Tried it, and huge difference... Sphinxsearch: 5-10 seconds average Elasticseach: ~1 second.

      Ales - User for more than 5 years |Magento 1|Magento 2

      14th August 2018

      Great product

      Elasticsearch opens up far better search options for Magento websites, it is a must for any shop owners running Magento.

      Hamish - User for more than 7 years |Magento 1

      10th August 2018

      Must have extension for huge catalog.

      This plugin boost up the speed of search and relevant results that is amazing I found in this plugin. Indexing is also too fast, so its worth owing this extension. Upgrade and support is nice but yes paid upgrades after the support period is over.

      Kapil - User for more than 7 years |Magento 1

      4th August 2018

      Easy to use extension

      Must have an extension for your Magento 2 shop! Integrated great, easy installation.

      Shop TXTSV - User for more than 7 years |Magento 2

      17th July 2018

      Super working Search for Magento 2

      Very nice Module with a lot of possibilities to setup weight of search. The preview is super good and descent rate was going down 27% after installing this search. We use it with magento 2.2.3 and it is working stable. For installation we needed some help because of some issues with our theme. Wyomind solved it fast and to 100% satisfaction.

      11th July 2018

      So great

      We're using this extension with Magento 2.1.1 without any issues. Quite easy to integrate and works as published. Only downside is the occasional need to re-index the catalogsearch_fulltext index in Magento after adding/updating products in our catalog.

      11th July 2018

      So Great

      The best elastic search extension for M2

      3rd July 2018

      great extension

      I am using this extension for 3 years and it's working very much fine. Giving better result for the search for my users. The autocomplete feature is very fast. It's also supporting Elasricsearch 5.x version which is great.

      2nd July 2018

      Nice extension and very fast and helpful support

      This extension replaces the useless default Magento 2 search engine and delivers the powerful search capabilities of the Elasticsearch engine in a visually pleasing way. The autocomplete feature is fast and the output template and corresponding css can be configured if needed.

      2nd July 2018

      Solid and Powerful extension.

      We've been using wyomind's Elasticsearch for Magento for quite a while now, and it's an excellent extension!

      Dzoyo - User for more than 7 years |Magento 1|Magento 2

      18th June 2018

      Great extension

      The best elastic search extension for M2

      OCA - User for more than 7 years |Magento 2

      15th June 2018

      Good

      Really useful Elastic search extension that increases traffic, thanks

      KArthick

      12th June 2018

      Easy to use

      Great extension. Using it on magento 1.9 without any problems for the past year. It really puts elasticsearch to work at full potential. With search weight on attributes as well as on individual products you have the correct set-up for a search engine.

      octavian - User for more than 6 years |Magento 1

      7th June 2018

      Hassle-free experience, responsive support team

      We're using this extension with Magento 2.1.1 without any issues. Quite easy to integrate and works as published. Only downside is the occasional need to re-index the catalogsearch_fulltext index in Magento after adding/updating products in our catalog.

      Mukhund - User for more than 7 years |Magento 2

      30th May 2018

      Super easy to customize, very strong search capabilities, and great customer support!

      Customer support has always responded quickly and resolved all of my issues so far. I recommend this to anyone looking to integrate Elasticsearch into their Magento site.

      rchobby - User for more than 5 years |Magento 1

      28th May 2018

      Amazing Extension

      We are using the Wyomind Elasticsearch extension for Magento 2.1.6 and run perfectly without bug or error. and very easy to use. this extension will give you power to improve your site and specialy they have features like autocomplete and super fast suggestion products and pages,tags,etc . so i recommend this extension for those looking for amazing elasticsearch for magento.

      Fullstack - User for more than 7 years |Magento 2

      28th May 2018

      Working Good

      After integration, The elastic search working great. Need some configuration to enable/disable price in the auto-suggestion drop down.

      23rd May 2018

      Comprehensive and stable extension for Elasticsearch that just works

      Configuration settings are flexible and indexing seems running smooth. We use it in combination with Amasty Shop By plugin to handle layered navigations, and everything operates as expected

      15th May 2018

      Responsive support

      However elasticseach is a resource heavy addon it's a must have if your customers use your search functionality on your website. Out of the box the magento search is useless but with the module and elastic search set up we managed to get a better customer experience. I had a few pre-sale questions and all were answered within 15 minutes. Keep up the good work!

      25th April 2018

      Great module & Support

       Works really well, super fast results as you type. Magento's built in search is slow and has poor relevance. Wyomind module solves that and allows weighting of product attributes. Autocomplete layout looks good with product images. Definitely recommend this module for anyone with a serious Magento store who wish to provide the best search results possible.

      17th April 2018

      Nice extesion and excellent support

      This exrtension supports multi store views with different domains. The support is very fast and pretty good.

      Alex - User for more than 6 years |Magento 2

      13th April 2018

      Great performance and continually supported

      The performance increase on autocomplete and search results are very noticeable. The plugin is also updated regularly.

      David - User for more than 6 years |Magento 2

      11th April 2018

      Great module for Elasticsearch.

      It works great with our server

      Erik - User for more than 7 years |Magento 1

      7th April 2018

      A breath of fresh air compared to stock Magento search

      My store is on shared hosting so Elasticsearch should be out of reach, but this extension paired with a small AWS instance I finally have access to powerful search with minimal configuration. I appreciate that, my customers appreciate that. Sales are up and the autocomplete works a treat. It is currently running flawlessly in a multi-store environment.

      16th March 2018

      Fast search it is!

      Very good module for fast search. Needs improvement for indexing products, because with version 5.4 I had complications. autocomplete file has to go to project root or to pub folder. I really want to try the latest version of that module to see latest features and bug fixes.

      21st February 2018

      Happy user of Elasticsearch extension

      Wyomind Elastic Search extension works great on our website. We have more than 1500 SKU and this tool helps a lot to visitors to find the products they are looking for. We like also the search results preview with image thumbnails and product information. Thanks also for the good support and help with the extension setup!

      21st February 2018

      Autocomplete with Images!!

      We are using the Wyomind Elasticsearch extension for Magento 2.2. We chose this extension for the autocomplete feature with images and it has worked great. We get a lot of positive feedback from our customers about the enhanced search capabilities. No issues with over 50,000 products on our site.

      31st January 2018

      Has potential but could not get it to work fully and support was mediocre in my case

      I got it to a point where it was returning results but it was showing products that it should not have. Supports solution was to upgrade to the next version. After questioning that advice I received some condescending responses from one rep. I upgraded and still the same problem - surprise, surprise. The next rep was better to work with but not much more helpful. We don't have the easiest setup to work with so I can't blame it all on them. Even though I was a few months past the 15 days refund period it was obvious I couldn't use their product. I was hoping for a refund given the circumstances but they would not. I can see the potential with the extension but if you need more than basic support you'll have to take your chances that they will be able to help.

      ggeller - User for more than 6 years |Magento 1

      26th January 2018

      Quick and wonderful extension and good customer service/support

      Had some trouble installing it during Christmas time (installed the wrong Elasticsearch version). But even in these holidays they answered quickly. After installing I had some incompatibilities with my template, but this was also solved with the help of the great support team. Even some idiot questions I had, they were happy to answer. In short, Great extension, great support.

      20th January 2018

      Excellent must have extension - Increases search speed drastically

      Autocomplete and suggestions speed is lightning fast. Configuration is easy, no need to code unless you want to customize how your autocomplete looks, but it's same everywhere. Search speed increases by a lot. Wish as well it would override regular database and sync all database or just become the main database for Magento, that would certainly increase comfortability of editing and saving products. Hope there will be such upgrades. Very much recommend this module for all.

      6th January 2018

      Great Extension - must have

      We are using this extension since Magento 1.9.x, Installation and Configuration works without any complications. The Integration into our shop was done via a few Code-Changes on our theme - we are using Infortis Ultimo. Customers like to use the search and get very good results through the Elastic-Search plugin compared to the "normal" search done by mysql/mariadb. the hitrate is about 90 % correct without any modification of the search. Summary: It's a great Extension and a MUST HAVE

      goldkind.wien - User for more than 7 years |Magento 2

      26th December 2017

      Excelent!!

      one of the best extensions we use. The functionality of installing and configuring, practically without coding is convenient

      19th December 2017

      Elastic Search is Awesome

      Makes searching the website very easy. Most of my customers use the search box instead of the category lookup. Definitely gives better results compared to the native lookup and it does it very quickly. Extension worked out of the box and didn't run into any issue with it. Great Extension!

      Tom - User for more than 7 years |Magento 1

      18th December 2017

      Great Extension

      Really great extension works very fast! Elasticsearch in easy to use and set up, must have...

      Lorenzo - User for more than 7 years |Magento 1

      18th December 2017

      Amazing

      Very useful extension, it's a big part of our website; and it's working perfectly. I want to thanks also the support team of Wyomind, very reactive and profesionnal. They helped us for every questions we asked about their service I recommand the use of this extension!

      Michael - User for more than 7 years |Magento 2

      11th December 2017

      Easy to set up and does what it needs to do

      Easy to set up and get running. Really good to see Wyomind are working on introducing compatibility with popular extensions from other module developers like Amasty and theme developers such as Ultimo, Porto.

      Chris - User for more than 6 years |Magento 2

      10th December 2017

      Solid Product with Solid Support

      We have used Wyomind for the last 3 years now. In that time the quality of the product has been superb and only matched by the quality of the support. Responses are quick, answers are detailed and questions or never a problem. Even when querying inner workings in more detail. I have no hesitation in recommending them for their modules and can honestly say it is now a no brainer to pick them whenever we need new functionality adding to our site.

      4th December 2017

      Must have

      Tout est dans le titre, module essentiel pour une recherche pertinente sur Magento.

      30th November 2017

      A must-have for magento

      Great module that has improved speed, usability and performance a lot, a must-have for magento-webshops. I've tried a lot of different modules before this, and none of them gives the same precise results. We've at total of more than 50.000 products but index is fast and always up-to-date.

      29th November 2017

      works as advertised

      Works great and support has been very helpful.

      Brian - User for more than 7 years |Magento 1|Magento 2

      28th November 2017

      Great search extension that has improved speed and performance.

      Using Wyominds elastic search extension has improved site speed drastically, we've built our own auto suggest also using the elastic system and it functions great.

      24th November 2017

      Great extension and great support

      We installed chose elasticsearch for one of our Magento 2 projects. When we started the development there were some issues but with the help of great support, we overcame these issues. Later on, we also had problems when we were launching the project for production, it was even more problematic because we were pressured by the deadlines. However, we were saved by support again. Support guys did a really great job in helping us. They were very understanding and quick with their responses. The third time we had issues it was when we were upgrading Magento from 2.1.9 to 2.2.1. This time we had a silly problem, yet support guys displayed their professionalism again and patiently helped us. Thank You for the great extension and great support!

      Milda - User for more than 6 years |Magento 2

      21st November 2017

      Very fast!

      Very fast search extension. We have more than 30K products, but it is still fast.

      Joris - User for more than 6 years |Magento 2

      20th November 2017

      Excellent extension

      Simply a must for any Magento store

      16th November 2017

      Good extension, bad support

      I've installed the extension and elasticsearch implementation in magento by myself, and when i asked for support because the autocomplete results are not showing the product name only price, and autocomplete pop up was above my menu, the support guys told me for the missing of the name in autocomplete and i quote them "the index is running, you should probably wait for the end of the process." which seems silly to me because it is like that more than 8 hours, as for the autocomplete menu being above my header menu they responded "This is clearly a css issue that must be fixed from your end, with the help of your developer." which i understand also, but just to be clear, when purchasing an extension if you advertise a fully functional extensions you should be able to offer the service to implement it, also my theme which is Porto from Smartwave is "Supported " since a recent version realase. Dont get me wrong , im happy with the extension, but very UNHAPPY with the support, like most of you i come here because of the credentials they have, but i found this.

      15th November 2017

      Great products

      Must for all magento shops that are interested to increase customer search experience. Wyoming support is fast and to the point. Only drawback for me is the price - module cost 90Eur and additional support for 1 month 45Eur. seems.

      Mish - User for more than 9 years |Magento 1

      15th November 2017

      Great Extension, even greater Service

      Amazing fast and super friendly support. Response time faster than speed of sound. Extension elasticsearch is a must have for magento, runs like a charm and is easy to config.

      mink - User for more than 8 years |Magento 1

      13th November 2017

      Great Extension - must have

      elasticsearch-plugin is a great choice for magento 1 and 2 . i'm running it about 2 years wihout any troubles. configuration is quite easy and self-explaining. customers like the search experience - i got excellent feedback. technical support is also doing a great job, you'll get quick response and always immediately a working solution if you run into troubles. the application is really worth of money. simply a must have !!!

      10th November 2017

      Great extension

      It is worth of money. Must have.

      8th November 2017

      elasticsearch

      great plug-in. works fine and it's fairly easy to install. use Elasticsearch, an astonishing search engine can completely change the User experience on your e-commerce, leading to a greater visitor/order ratio. 50k+ products and works fine.

      6th November 2017

      Good

      Good module

      Dennis - User for more than 6 years |Magento 1|Magento 2

      3rd November 2017

      Good extension for huge catalog.

      We are having more than 100k products and the search result is quite speedy from such a huge catalog in Magento CE. I would suggest the team to work over relevancy of result, support is quite good. Autocomplete and search results are quite impressive. I would suggest the extension for huge catalogs.

      Eric - User for more than 7 years |Magento 1

      2nd November 2017

      Elastic search M2

      It is a very good extension. It is very easy to install and use. I also have done customization in this module and with the help of extension provider I was able to resolve issue Support of team is very good

      30th October 2017

      Good Extension - Improve your search

      With this extension we improved the search of our site. We had a bad autocomplete that was not working as aspected. Now, with this extension, we have the same results in both search results ( Autocomplete and Catalog Search ) with an impressive response.

      27th October 2017

      Good extension, saved our life at the last moment

      Our client was not at all happy with the extension came with the theme. Found this at the last minute and satisified with the performance.

      Nag - User for more than 7 years |Magento 2

      27th October 2017

      Great extension

      Great extension, but had some problems with changing the base URL

      20th October 2017

      Fast, simple... Excellent!

      The only choice for magento 1 store!

      12th October 2017

      good

      awesome the extension. You must to have it.

      8th October 2017

      Great extension, excellent support!

      Must have extension for your Magento 2 shop! Integrated great, easy installation.

      8th October 2017

      Great Extension

      in the beginning of using magento , we experienced issues when searching through our huge prodict-catalogue. after we tested different search-solutions we switched to elasticsearch because it was the best and fastest solution for our magento installation. therefor the elasticsearch module of wyomind was the best choice. the easy configuration and implementation save us a huge amount of time and we we were also suprised of the excellent and professional support of the module-developers regarding customizing the search-eperience on our website. wyomind elasticsearch for magento is a must have for magento 2

      6th October 2017

      Really fast!

      Switching from mySQL to elasticsearch module was great decision since the speed of our search increased drastically! The support was ready to answer all of our questions in time and were very useful. Would recommend the plugin to all Magento users.

      6th October 2017

      Great Support + Great extension

      This is a must have extension! There were a few bugs when they released like any other extensions providers in Magento 2 had, however, what differentiates them from the crowd is that they have the best support, they respond quickly and offer quick fix. They work hard to make their extension compatible with third parties extensions like Amasty Layered navigation. Thank you for being part of our team!

      3rd October 2017

      Great module!

      So easy to install! The best by far!

      Makis Dela Bombonera - User for more than 6 years |Magento 1

      3rd October 2017

      Simply perfect!

      1step integration in 5 minutes!

      George - User for more than 6 years |Magento 1

      2nd October 2017

      Much better than the standard search in Magento

      Much better than the standard search in Magento

      28th September 2017

      Great alternative to magento search

      for Magento 1, this module was a game changer. We saw conversion rise dramatically after we implemented this. The indexing process is also very fast for large catalogs compared to other alternatives. In testing it was about 5x faster than the previous indexing process.

      22nd September 2017

      good!

      This search has been working well for us. Only downside so far is there seems to be a case sensitivity issue that we're working to get resolved with support.

      6th September 2017

      really nice

      best alternative for magento search. more than satisfied and the conversion rate went up.

      michael - User for more than 7 years |Magento 1

      5th September 2017

      Searching is very fast. The search result is much much better than the default Magento search

      Searching is very fast. The search result is much much better than the default Magento search. I like the fact that there is a product thumbnail next to the search results. This extension is one of the best extensions we used to deploy on our website

      Mai - User for more than 8 years |Magento 1

      3rd September 2017

      AAA+++ Module

      Really nice module. Works like charm from the beginning. Results works perfect now, and the autocomplete features is extremely fast !. AAA+++ Module. Thanks.

      8th August 2017

      Excelent Search Module

      The search results are much improved. The best option is Fuzzy search option. We have some problems with Autocomplete, is shows all the products we have 27k products and we use SEO Pack by GPMD and hide the end of life products from the catalog, search result... On search results page the end of life product is not shown, on autocomplete the products are still shown The problem is with different visibility settings I haven't managed to fix this issue Still with this small issue the product is excellent.

      27th July 2017

      its good

      ElasticSearch is easy to install, good support from the manufacturer , and fast updates and extensions to the extension . We can recommend the Elasticsearch extension . Elasticsearch is great for search.

      27th July 2017

      Excellent extension

      Easy to use and set up and a major improvement on the default Magento search

      24th July 2017

      Good ElasticSearch module / Gutes ElasticSearch Modul

      Good module and easy to set up. The basic settings are possible. Unfortunately, the lack of settings such as synonymous to manage certain words to push or block. Guten Modul und einfach einzurichten. Die Grundlegenden Einstellungen sind möglich. Leider fehlen Einstellungsmöglichkeiten wie synonyme zu verwalten bestimmte Wörter zu pushen oder zu blocken.

      ARS - User for more than 7 years |Magento 1

      24th July 2017

      Good Search Module

      Good Search Module

      29th June 2017

      Fantastic

      Perfect extension! thank you!

      ciamb - User for more than 6 years |Magento 1

      23rd June 2017

      Extension works really well

      The extension works really well. We have picked up a few small issues that are fixed on upgrades.

      17th June 2017

      Fast and Accurate

      Well-documented ElasticSearch extension that has made Magento searches much more accurate.Good support as well.

      15th June 2017

      ElasticSearch for Magento a must have

      ElasticSearch is easy to install, good support from the manufacturer, and fast updates and extensions to the extension.
      We can recommend the extension Elasticsearch by wyomind without restrictions.

      Simple Web-Solutions - User for more than 7 years |Magento 1|Magento 2

      14th June 2017

      Great extension!

      Very easy to work with.

      Anna - User for more than 7 years |Magento 2

      5th June 2017

      Great implementation of Elastic Search for Magento

      The search and conversion have improved number of times after installing this extension. Search results are looking much better.

      31st May 2017

      Works flawless no problems

      Really recommended; extension works very fast and is quite easy to integrate, of course, there is always some space for improvement, but at the moment what is offered in the market, probably one of the best extensions.

      22nd May 2017

      Nice extension

      Really do nice work, index products fast!! :)

      22nd May 2017

      Just the best

      This is a really great extension which helps to increase the sales of our store. Many of our customers use search to find our products from a wide range of catalog. we are very pleased to use your product keep up the good work we are expecting the best out of you thank you again.

      15th May 2017

      Fantastic extension

      Working very well with a high traffic site, top notch support

      David - User for more than 7 years |Magento 1

      12th May 2017

      extension elasticsearch run stable

      extension elasticsearch run stable very good

      5th May 2017

      Great extension

      Wonderful plugin, I wish it was included in the Magento 2 package

      Enrico - User for more than 7 years |Magento 1|Magento 2

      25th April 2017

      Excellent extension and support

      This extension is great. Their service is even better. I am very satisfied.

      25th April 2017

      Top helpdesk

      Very fast answers on tech support tickets. This is great service you will get. Sometimes not so easy to understand each other but Paul does answer very fast so this means issues are getting sorted out quickly this way to avoid any delays in development of our website. Thank you very much for providing this great module. A little more documentation regarding design would be very helpful. Now is somewhat test and try but at the end it seems getting all ok. I'm looking forward how this extension will run on our magento 2 development server very soon.

      18th April 2017

      Great Extension!! I recommend this

      This is really great extension which helps to increase the sales of our store. Most of our customer uses search to find our products from a wide range of catalogue. This extension increased the search speed a lot compared to the default search. The Support is great mostly Paul, he is the real hero :) , help a lot from installing to configuring and all. One star less for Pierre's. He always bring the bad news don't know why.This is the place where I expect the improvement needs to be made.Sorry to say that but I feel this way. Overall experience is great. Kudos to the extension developers and support.

      Navin - User for more than 7 years |Magento 2

      12th April 2017

      Thank you from Seeds Here Now

      We at Seeds Here Now we're looking for a solution that would do away with our Magento search sluggishness. We spent months searching for a way to help out customers search better and we found this extension here at Wyomind that would work with our customers elastisearch integration. It is fast and our customers can find our seed packs easily now. Thank you so much for helping us get our search engine up to speed with your elastisearch extension.

      23rd March 2017

      Must have extension

      Great for easily improving search results.

      22nd March 2017

      It's a must-have Search Extension for Magento

      This is a must-have extension to replace the awful native search functionality of Magento. It's easy to install and works out the box as discussed. The support is good and responses are quick, as advertised. This extension is compatible with Amazon ES which is what we needed. Thanks to the Wyomind team for great work.

      Lex W - User for more than 8 years |Magento 1

      15th March 2017

      Good Extension and Support

      Extremely responsive support which helped us sort out some order issues. Its a good extension with the added bonus that the extension comes bundled with the security extension Watchlog if you so choose. Having used SOLR in the past its refreshing to now use Elastic Search with a good quality Magento extension.

      10th March 2017

      Works great - well worth getting

      Highly recommended - we used this module for our Magento 2 project and it didn't disappoint. It allowed us the flexibility to index and improve our search engines by a huge margin. I would always advise you do not use Magento's standard functionality and look to implement something like this.

      Nick - User for more than 7 years |Magento 2

      9th March 2017

      Best search solution for Magento shops

      The Magento plugin is excellent. The authors kept every setting easy to understand and change. The implementation was also quite easy and brought no compatibility issues like other plugins do out of the box. Furthermore no code changes where necessary. Our customers loved the search features like image-display, and other stuff which can be easily adopted through the admin-interface. in addition to the kibana and logstash plugins, the magento-information can easily transferred and analysed to your existing elastic-search installation. Give it a try, the plugin is a must-have!!! Thanks to the developers for their great work!

      8th March 2017

      Fast easy search - must have.

      Magento's out of the box search is a little bit inconvenient. We searched for a solution to offer our customers a fast search with product image preview. Elasticsearch from Wyomind does everything a search should do. It's easy and fast to implement and with a little bit of support from Wyomind we were live in a few hours with our new search. Thanks a lot!

      27th February 2017

      Great purchasing experience and a great extension

      I have been looking at the options for enhancing my Magento search and came across Elastic Search. I started reading about the open source search engine then set about finding a plugin to utilise it's power. All roads seemed to lead to Wyomind....and a good job too, the whole experience has been great. Purchasing the plugin was a breeze, as was installation, and the plugin works great. I expect to see an increase in conversions straight away!

      16th February 2017

      Fantastic extension and support!

      The extension is great and provides out of the box functionality. What really sets Wyomind apart is their support. They make sure you are successful. Highly recommend!

      Corey - User for more than 9 years |Magento 1

      13th February 2017

      Excellent.

      Far better than the core Magento Enterprise Elastic Search functionality. More reliable, more functionality. Definitely recommended.

      13th January 2017

      Great Support!

      Wyomind is the only foreign company we trust in! The support is great and fast, we never have seen this quality in supporting software. we can recommend the whole team. The extensions are also really helpful

      5th January 2017

      Excellent

      Extremely quick, easy to understand (even for me) and very good results. Thanks for another great module guys (and all the support)

      Alan - User for more than 7 years |Magento 2

      3rd January 2017

      Nice support for elastic search for magento 1.9

      We need some modification for our website. Elasticsearch was a huge help for searching our 40.000 products catalog. Wyomind support was excellent and very fast, they replied in < 1 hour.

      1st January 2017

      Amélioration recherche Magento

      - Simple à configurer côté admin Magento - Côté serveur, pour les néophytes, il faudra passer par prestataire pour installer le serveur elastic search - Un souci, cependant... depuis une maj de Magento vers la 1.9.3.1... la fonction voir tous les produits ne fonctionne plus (gênant même handicapant - recherche solution)

      Jérôme - User for more than 10 years |Magento 1

      22nd December 2016

      A must for improving search results

      Installation is really quick. It's a must for the users to help them find the products they are really looking for. Highly recommend it !

      Yab - User for more than 7 years |Magento 2

      18th December 2016

      Very good search extension

      I have tried solr bridge, but this extension with elasticsearch is more flexible and way better customizable. I recommend this extension if you are looking for better search results. Very fast support and problem solvers.

      Sebastian Lorenz - User for more than 10 years |Magento 1

      16th December 2016

      A must have extension and fast support!

      Initially had some trouble getting the module working with my theme but Wyomind had it sorted out in no time. The default search in Magento 1 is very lackluster so we needed something that gave more precise search result and this extension did exactly that. Would highly recommend.

      8th December 2016

      Best solution for elasticsearch

      After trying many different opensource/free modules none were providing full operation without errors.
      Fast process (less than 5 mins) from purchasing to install with no issues at all.

      HamboBlank

      22nd September 2016

      Extremely responsive support

      Extremely responsive support that has gone above and beyond to ensure our satisfaction. Code quality is unparalleled, Wyomind have proven themselves time and time again with amazing extensions. Very happy!

      joshpine

      23rd October 2015

      Powerful Extension and Support

      Great fast module and support is also very very good and fast.

      DAN_Development

      21st October 2015

      Great and fast Support

      This extension in combination with elastic search is a must have for every magento shop!
      Although it was not working after installation bubble support was fast, kind and effectiv in helping to get it work as should!

      mingento

      27th August 2015

      Magnificient extension

      This extension is pure magic.
      Extremely easy to install and configure.
      Needed to make a small change and it was very easy to do. The code is clean and respect Magento's guidelines.
      Support was really fast (less than a day to answer) and really helpful.
      If you want to upgrade Magento's basic search, this is the way to go!

      Loubz

      20th August 2015

      Fantastic Support

      Johann was very quick to respond and provided excellent support. We had an issue with a theme file that he fixed very quickly.
      Would definitely buy from him again.

      infogentle

      12th August 2015

      Great extension - great support

      We have a new webshop with more than 250k+ products. So we had to get a good and fast search. We wanted a fulltext search (even the descriptions of the products should be indexed) with features like suggestions on bad search phrases and a fault tolerant search. So MySQL as engine has been no choice. On our search for better fulltext search engines we found elasticsearch a cluster based search engine (single node on localhost is possible too). And even better we found this extension that would integrate our elasticsearch engine.
      The search indexing process in the backend is really fast even with descriptions of the products included (< 10 minutes) The performance and the relevance of the search results in the frontend are fast, impressive and more than satisfying. The speed, relevance and ordering of the search hits is outstanding good.
      We found a little bug and contacted the developer. The response time and time for eliminating the bug has been fast and competent.
      Yes, we are a very satisfied customer and yes we recommend this extension.

      CarstenSchmitz

      16th October 2014

      Highly recommended search enhancement

      Let's face it, the integrated MySQL search stinks. This module adds support for elasticsearch, which is the current state-of-the-art open source search solution.
      Not only is this search engine lightning quick, but it comes with features like a suggest that actually suggests something before the sun goes down, complete with thumbnails of the products in the suggest fold-down menu. Fuzzy search means you can mistype and still get good results, and with added "Did you mean?" suggestions.
      The Bubble Search module integrates all this nicely into Magento in an easy to use fashion and with useful default settings. Other than you having to install elasticsearch, which is easy to do for a search engine, it is basically plug and play.
      I've found the developer's support to be outstanding, he's always quick to respond and help if a problem arises. Take it from someone who's been in the Enterprise Search business for a good dozen years: You want this search, and you don't need a way more expensive legacy search solution for most business cases.

      madearl

      21st September 2014

      All seems to work well

      A little tweaking on the settings side to allow greater weight to the product title and now the results work well. Easy installation. Would recommend

      rtdmatt2010

      29th July 2014

      Very Good Support and good quality extension

      Johann has been very helpful and has helped make sure the extension works the way it should. very prompt email support. It is on of the best search extensions on the market. Highly recommend it.

      Rastapopulus

      28th July 2014

      Fast and easy to integrate, works perfect!

      Excellent code quality, easy to integrate and it does what's been described on the box ;)
      If you need a fast industry standard drop-in replacement for the default magento search with ElasticSearch base, you should take an eye on this nice extension.

      mageprofis

      2nd June 2014

      Elasticsearch by BubbleShop A++++

      Magento's built in search is worthless in the niche i'm in. So many people misspell the names of products or don't know exactly what they are searching for. Elasticsearch to the rescue! It's able to work without any special settings and deliver the correct products to the user. Search is useful again!
      Support has been fast for me, even on weekends.
      Just remember to secure your elasticsearch
      I use iptables:
      (maybe centOS specific)
      Secure Elasticsearch
      sudo iptables -A INPUT -i lo -p tcp --dport 9200 -j ACCEPT
      sudo iptables -A INPUT -p tcp --dport 9200 -j DROP
      Must do this to each port elasticsearch is using 9201,etc..
      To undo the above
      sudo iptables -D INPUT -i lo -p tcp --dport 9200 -j ACCEPT
      sudo iptables -D INPUT -p tcp --dport 9200 -j DROP
      Then run
      service iptables restart

      btray77

      14th April 2014

      Works out of the box

      This extension works good. However, developer support is poor. Developers are giving suggestions that are not very helpful and the response time is slow.

      buric

      6th February 2014

      Lightweight, working and clean extension

      It's just working and indexing speed is overwhelming.
      Nice work.

      funkdoobiest

      18th September 2013

      Great Extension.

      As a Magento Certified developer myself I was very pleasantly surprised with the quality of this module and the code. Not much configuration required.
      The support from the developer was great! (had a question or two regarding backporting this module to 1.6.1)
      This module in combination with a simple elasticsearch installation spead up our 200.000 product search immensly and gives much better results.

      mschot
      Changelog

      Initial release for the master version

      Initial release for the legacy version

      • Fix for an initialization bug that could be triggered during product indexing
      • Fix for indexing dates
      • Fix for the additional sorting option

      Enhancements

      • Possibility to add an additional sorting on the results from the autocomplete
      • Fix for the prefix management for the search by SKU
      • Minor fix on code
      • Fix for sorting in-stock products before out-of-stock products

      Compatibility

      • Compatibility with Plumrocket Productfilter

      Enhancement

      • New option to display in stock products before out of stock products
      • Fix for rewriting

      Compatibility

      • Compatibility of the autocomplete template with PHP 7.2
      • Fix for an XSS error

      Bug Fix

      • Fix on the error: Call to undefined method ElasticSearch::getResults()

      Enhancement

      • When enabled, the Fuzzy mode is used in the second place if there is not result

      Compatibility

      • Compatibility with Amasty_Sorting
      • Compatibility with Amasty_Sorting added

      Enhancements

      • Possibility to index categories that are not included in the menu

      Enhancement

      • Milkycode_ProductExtended supported
      Patch v4.8.4.4

      • Fix for retrieving the currencies in the autocomplete

      Patch v4.8.4.3

      • Fix on the conversion during the indexation

      Patch v4.8.4.2

      • Fix for the pre-tax prices format

      Patch v4.8.4.1

      • Compatibility with MageWorx_SeoFriendlyLN

      Enhancement

      • Indexation of prices excluding VAT if needed
      Patch v4.8.3.1

      • Compatibility with MageWorx_SeoFriendlyLN

      Enhancement

      • New event wyomind_elasticsearch_index_export to edit data before indexing
      Patch v4.8.2.1

      Enhancements

      • Categories that are not in the menu are not indexed
      • Better management of the wyomind_elasticsearch_index_export event

      Bug Fix

      • Fix for the compatibility with Amasty_Sorting

      Enhancement

      • Better management of the autocomplete for iOS on iPhone

      Enhancement

      • Support of prices per customer groups

      Improvement

      • Option to check the products sku
      Patch v4.7.3.2

      • Compatibility PHP 7.2

      Patch v4.7.3.1

      • Fix for retrieving a table name

      Enhancement

      • Better management of the stock status

      Enhancement

      • Better support for Amasty ShopBy
      Patch v4.7.1.1

      • Fix for the price calculation of the bundle products

      New feature

      • Search term suggestions available in the autocomplete.
      Patch v4.7.0.1

      • Fix for the price calculation of the bundle products

      Enhancements

      • Better search results response time for the autocomplete and the search results pages
      Patch v4.6.2.2

      • Disabled categories are now excluded from the autocomplete

      Patch v4.6.2.1

      • Minor fix for the toolbar in the sear results page

      Enhancement

      • Better support for the accentuated characters in the search results page (sort by feature)
      • Empty synonyms are not ignored 
      Patch v4.6.1.2

      • Disabled categories are now excluded from the autocomplete

      Patch v4.6.1.1

      • Minor fix for the toolbar in the sear results page

      Improvement

      • Fuzzy query mode is now editable
      Patch v4.6.0.2

      • Disabled categories are now excluded from the autocomplete

      Patch v4.6.0.1

      • Error display while using the CLI

      Enhancement

      • JSON configuration file can be generated via a shell script: php shell/wyomind_elasticsearch.php --update-config
      • Can now choose to show/hide images in the autocomplete
      • Product custom options indexation
      • Limit the number of results in the autocomplete form for product, category and CMS

      Fix

      • Attribute type management in case of "frontend-validation type" = "number" (JAVA integer length limitation)
      Patch v4.5.0.3

      • Disabled categories are now excluded from the autocomplete

      Patch v4.5.0.2

      • Error display while using the CLI

      Patch v4.5.0.1

      • Duplicated dots in the product urls fixed

      Improvements :

      • Compatibility with Elasticsearch server 5.x
      Patch v4.3.0.5

      • Disabled categories are now excluded from the autocomplete

      Patch v4.3.0.4

      • Error display while using the CLI

      Patch v4.3.0.3

      • Duplicated dots in the product urls fixed

      Patch v4.3.0.2

      Enhancement

      • Elastica library fix for Elasticsearch Server v2.x

      Patch v4.3.0.1

      • Fix for Elasticsearch Server 5.x

      Enhancement

      • The auto-complete panel supports now the synonyms.

      Improvements :

      • Can now add a weight to the products to boost them in the search results
      • Compatibility with Magento 1.9.3.1

      Enhancement:

      • Check the Elasticsearch server's status directly from the admin

      Enhancements

      • Better support of the multi-currency store views

      Fix:

      • Fix for Magento Enterprise when retrieving products urls

      Bug Fix:

      • Added more flexibility on keyword search for SKU attribute
      • Fixed missing product URL if core_url_rewrite.options is empty instead of null
      • Fixed bug if autocomplete.php is a symlink
      Demo store
      Work in progress...

      Stay tuned and get a coupon code of 10% off any purchase while creating your account!

      Subscribe now for updates, promotions and products launch twice a month at most.

      Please indicate a valid email