solutions for e-commerce

13 years of business 2555 reviews 4.9 average rating
User guide

How to use the Enhanced Autocomplete extension?

Elasticsearch is a real-time distributed search and analytics engine that allows you to explore your data very quickly. It is used for full-text search, structured search, analytics, and all three in combination.

And it packages up all these functionalities into a standalone server that your application can talk to via a simple RESTful API, using a web client from your favorite programming language, or even from the command line.

The Enhanced Autocomplete extension will allow you to make the link between the search and analytics engine and Magento.

You can find more information on the product here:

STEP 1: Install and run Elasticsearch server

As Elastic advises, "the easiest way to understand what Elasticsearch can do for you is to play with it".

To be able to use the Enhanced Autocomplete extension and reach the server, you first need to have a recent version of Java. You can easily install the latest version of Java from www.java.com .

Then you can install and run the Elasticsearch engine following the below steps.

Install Elasticsearch

You can download the latest version of Elasticsearch compatible with our extension from elastic.co/downloads/elasticsearch.


Check what version is compatible with the extension
Once it is downloaded, you can extract the archive file.
Once you’ve extracted the archive file, Elasticsearch is ready to run.

Run Elasticsearch

To run Elasticsearch, open a console, and run the following command:

cd elasticsearch-<version>./bin/elasticsearch

If you’re running Elasticsearch on Windows, simply run:

bin\elasticsearch.bat

Test Elasticsearch

You can easily test if the Elasticsearch engine is reached by opening a new terminal window and running the following:

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

You should then get:

You now have an Elasticsearch node up and running.

You can also check the official documentation to install Elasticsearch. 

STEP 2: Enable the Elasticsearch method

To configure Enhanced Autocomplete in a general way, go to:
SystemConfigurationCatalog Catalog Search

Configure the general parameters

In the Catalog Search tab, you can choose Elasticsearch as the Search Engine.

When choosing Elasticsearch as the Search engine, more options should display:

  • Enable Debug Mode
    Will display potential error messages in the frontend.
  • Enable Suggestion
    Will display a suggestion if the search engine detects a better text query ("Do you mean?" feature).

  • Servers
    Must be written as host:port and separated by a comma.
    To check the connection, click on Check Servers
  • Verify Host
    Only used for HTTPS connection. Set that option to No if you don't have a valid SSL certificate.
  • Server Timeout
    Number of seconds after a timeout occurs for every request. If you’re using indexing of file, a large value is necessary.
  • Index Prefix
    Used to prefix index names in order to avoid potential collisions.
  • Number of Shards
    Having more shards enhances the indexing performance and allows to distribute a big index across machines.
  • Number of Replicas
    Define the number of replicas. Note that having more replicas enhances search performance and improves cluster availability.
  • Safe Reindex
    Reindex in a temporary index and switch to it once finished. Especially useful for large product catalogs.

  • Query Operator
    By default, it is set to AND. For example, with the AND operator, the same query is translated to "digital AND camera", with the OR operator, the query "digital camera" is translated to "digital OR camera". You may have fewer results with the AND operator but they’ll be more relevant.
  • Enable Source Storage
    Should we store source data in Elasticsearch or not. Keep this setting to No for better performances. Will be forced to Yes if fast autocomplete is enabled.
  • Enable Fuzzy Query
    Enable the approximate search. 
  • Fuzzy Query Mode
    You have the possibility to choose the fuzziness level. For example:
    0, 1, 2: the maximum allowed Levenshtein Edit Distance (or number of edits)
    AUTO: should generally be the preferred value. Generates an edit distance based on the length of the term.
    For lengths:
    0..2: must match exactly
    3..5: one edit allowed
    >5: two edits allowed
Feel free to take a look at the Elastic documentation for the Fuzzy query mode.

  • Display in stock product first
    When this option is enabled, the out-of-stock products will be displayed after the in-stock products.
  • Additional sort attribute
    You can define an additional sorting attribute, for example: 
    price
    That way, in the autocomplete, products will be sorted by the score they get and by the additional attribute.

  • Additional sort attribute order
    When selecting an additional sort attribute, choose how it will be sorted: ascending or descending

  • Analyze SKUs
    When Fuzzy Query is enabled, you have the possibility to analyze the SKUs. The SKUs will be analyzed like other product attributes. It is useful if SKUs are multi-part values, such as XXX-YYY-ZZZ. If you don't want to analyze SKUs, then the SKU attribute is considered as one single word.

Manage your Indexes

The Enhanced Autocomplete extension adds 3 more indexes that you can find in:
SystemIndex Management

  • Elasticsearch Product
    Rebuild product full-text search index
  • Elasticsearch Category
    Rebuild category full-text search index
  • Elasticsearch CMS Pages
    Rebuild CMS pages full-text search index

You can easily reindex data by selecting those 3 indexes and by clicking on Submit .

Note that you can reindex any of your attributes. See how to make your attribute searchable.

STEP 3: Configure your search with Elastic Search

You can now configure your search in:
SystemConfigurationWYOMIND Elasticsearch

General Settings

In the General Settings subtab, you will be able to Enable Response Header. This will enable a custom response header for debug purposes.

Autocomplete Settings

By default, the autocomplete will display terms suggestions for your search.

You can choose to Enable Autocomplete in order to override the default autocomplete and to display products directly.

If enabled, 3 additional options will be displayed:

  • Enable Fast Autocomplete
    Use the fast autocomplete (with a payload during indexation).
  • Autocomplete labels
    You can also define a translation for each one of the labels that will be displayed in the autocomplete box as well as add new ones in the Autocomplete Labels field.
    That option is very useful if your website is available in different languages. You can then change the scope to a store view, for example, the French one, and translate each autocomplete label to the French word.
  • Enable Autocomplete Suggestions
    You can enable the suggestions in the autocomplete (do you mean?).
  • Suggestions limit
    You can define the maximum number of suggestions to display. 

Below is what you should get with the above example:

Product Settings

With the Enhanced Autocomplete extension, you can make your products searchable in the autocomplete box. Several options exist to enhance the search.

  • Enable Auto Redirect
    If only 1 result matches the query, the user will be redirected to the product page automatically.
  • Enable in Autocomplete
    If enabled, products will be searchable in the autocomplete box.
  • Autocomplete Limit
    Define the maximum number of results displayed in the autocompletion. For example 3.
  • Display image
    To display product image in the autocomplete.
  • Image Size
    Define the size of the images in the autocomplete box in px. By default, the value is set on 50 px.
  • Enable Thumbnails Generation
    Enable that option if you want to generate product thumbnails. They’ll be generated during indexation and increase execution time. Note that this will impact only the first indexation process since thumbnails are cached for the next indexations. If that option is disabled, the uploaded images will be used without any payload at indexation time but big images may be loaded in autocomplete box.
  • Index product custom options
    Product custom options will be indexed and searchable. This requires a new indexation.

Category Settings

You can Enable Category Search. If enabled, categories will then be indexed in Elasticsearch and new parameters will be displayed in the configuration.

  • Enable in Search Results
    If enabled, categories will also be displayed in the right column of the search results page.
  • Enable in Autocomplete
    If enabled, categories will also be searchable in autocomplete box.
  • Autocomplete Limit
    Define the maximum number of results displayed in the autocompletion. For example 2.

  • Search Results Limit
    Is the limit number of results that will be displayed in the right column of the search results page. Note that 0 or empty field means unlimited.
  • Show Category Path
    If enabled, the category path will be displayed in the right column of the search results page.
  • Searchable Attributes
    Define which category attributes are searchable. For example the Description and the Name.
  • Index Categories not included in the menu
    You also have the possibility to index categories that are not in the menu. 

CMS Settings

You can Enable CMS Search. If enabled, CMS pages will be indexed in Elasticsearch and new parameters will be displayed in the configuration.

  • Enable in Search Results
    If enabled, CMS pages will also be displayed in the right column of the search results page.

  • Enable in Autocomplete
    If enabled, CMS pages will also be searchable in the autocomplete box.
  • Autocomplete Limit
    Define the maximum number of results displayed in the autocompletion. For example 3.

  • Search Results Limit
    Limit the number of results displayed in the right column of the search results page. Note that “0” or empty means unlimited.
  • Searchable Attributes
    Define which attributes are searchable.
  • Excluded Pages
    Selected CMS pages will be excluded from the search.

STEP 4: Manage the weight of the attributes and products in order to refine the search results

The Enhanced Autocomplete extension allows you to easily boost your product attributes and products in the search results by giving them a weight.

By product attribute

To define some weight for each one of your attributes, you can go to:
CatalogAttributes Manage ATTRIBUTES

Edit the attribute you want. In the Properties tab and Elasticsearch Settings subtab, you’ll be able to define a value from 1 to 10 depending on the weight you want to assign to it.

Note that the highest weight is 10.

By product

The Enhanced Autocomplete extension allows you to easily boost your product in the search results by giving them a weight.

You can apply a weight for the product in:
CATALOGMANAGE PRoductSEdit  Elasticsearch

Note that the highest weight is 10.

Boost your Magento® search with Enhanced Autocomplete!

Enjoy a powerful autocomplete

  • Benefit from a very fast autocomplete
  • Improve the user experience with the automatic suggestion ("Did you mean?" feature)
  • Search on products, categories, and CMS pages

Boost your product attributes

  • Give higher weight to your attributes
  • Search on attribute options

Manage your index with ease

  • Use the ultra-fast indexation
  • Handle thousands of products easily

Completely configure your Elastic Search extension

  • Define a configuration specific to each store view
Freqently Asked Questions
Pre-sales informations

This extension works with Magento Community Edition and also Magento Enterprise Edition. To know if Enhanced Autocomplete is compatible with your Magento version, please check the Compatibility tab. 

Refer to the below table to know which server is compatible with your version of Elasticsearch:

Module Magento Elasticsearch server Elastica library (included in the module)
v4.1 >= v1.7.0 v1.x / v2.x v3.2.x
v4.2
>= v4.3 v2.x / v5.x v5.0.0
License and domains

We offer our customers who want to migrate their Magento 1 license to a Magento 2 license, the transfer at a reduced price. 

You have the possibility to migrate your license directly from your Wyomind account in:
My accountLicenses & Downloads

Click on migrate to magento 2  in front of the extension and the domain you want to transfer. 

Confirm you want to migrate your license to a Magento 2 license by clicking on Confirm and checkout .

An invoice will be automatically added to your account from: 
My accountInvoices

  

The price of the transfer is equivalent to a 30% reduction compared to the price of the regular Magento 2 license.

You can proceed to the payment by clicking on PP .

Once the payment is done, you can go back to: 
My accountLicenses & Downloads

There you will be able to download and install your license for Magento 2. 

Note that your license for Magento 1 will remain active indefinitely in your Wyomind account in order for you to migrate with peace.

A license is valid for an unlimited period of time on one single Magento installation.

If you use more than one Magento installation, you will have to buy a separate license for each one.

If you run several domains on the same Magento installation, you will need only one license for all of them.

Although your license doesn’t have a limited period of validity, your support period does. By purchasing an extension, you’ll be granted a 6-month support period for free. Passed this period, you will have to renew your Support plan (see FAQ: How to extend my support period?).

You can pre-register your live domain to your license in advance.

Thanks to this option, you'll be able to get the extension ready to use on your domain before it goes live.

To pre-register your production domain: 

  1. Go to:
    mY accountLicenses & DOwnloads
  2. Click on  next to the extension you want your domain to pre-register on.
  3. Click on the link at the bottom of the page saying:
    Do you want to pre-register your domain in order to be ready to go live?
  4. Finally, enter your domain name and click on pre-register now .
Attention, this doesn't mean your license is activated. You'll still have to activate it on your new domain when the extension is installed. 

One license is valid for an unlimited period of time on one Magento installation only.  

It is possible, however, to extend or transfer your license in 2 cases: 

  • If you'd like to add your testing environments to your license.
    In this case, it is possible to extend your license to an unlimited number of domains for free.
    For example mywebsite-staging.com or mywebsite-dev.com
  • If you want to transfer your license to another live domain.
    In that case, the support period for your license must still be active.


To be able to use Enhanced Autocomplete on both your production and testing environments, follow the instructions below:

  1. Download Enhanced Autocomplete.
    (see FAQ: Extensions download)
    .
  2. Install Enhanced Autocomplete on your production environment.
    (see FAQ: Extensions installation)
  3. Activate the license.
    (see FAQ: Extensions activation).
  4. From your Magento admin panel, enter your current Activation Key in:
    syStem CONFIGuration WYOMING YOUR EXTENSION 
  5. Save your configuration.


Now that you can use Enhanced Autocomplete on your production environment, repeat the same steps as above on your testing environments.

The only difference this time: a notification will appear in your Magento admin

You will be given a choice between:

  1. buy a new license now
  2. add this domain to my license


Click on Add this domain to my license.

A transfer request will then be sent to our team within an hour.

Once the request is taken care of, you will receive a confirmation email.

If your transfer request is accepted, you can use Enhanced Autocomplete on both environments at the same time.

The order in which you activate your license on your domains does not matter.
You can start with your staging/dev/local environment or with your live domain, the process will be the same.
Modules versioning and download

In order to download Enhanced Autocomplete, log into your Wyomind account:

    1. Go to:
      my accountLicenses & downloads 
    2. Click on the  icon next to Enhanced Autocomplete.

      A new window opens.

    3. Choose the version of Enhanced Autocomplete.
      You will be able to choose the most recent version of Enhanced Autocomplete (for both Magento 1 and Magento 2).
    4. Click on  .

Your download can start.

When purchasing an extension from wyomind.com, you benefit from a lifetime upgrade. You can at any time download the latest version of the extension directly from your account. 

To upgrade Enhanced Autocomplete, follow the steps below:

  1. Go to:
    my accountLicenses & Downloads
  2. Click on  next to Enhanced Autocomplete.
  3. Choose the latest version of Enhanced Autocomplete (for Magento 1 and Magento 2).
  4. Click on download .
  5. Install the new version of Enhanced Autocomplete to update your Magento admin. 

Modules Installation/Uninstallation

To uninstall Enhanced Autocomplete, go on its zip folder and open it.

You will find a shell file (such as: yourextension-uninstall.sh) that you must execute on both your server and Magento root directory.

Once the uninstallation is over, refresh your cache and enable the compiler back again (if you use it).

Before installing Enhanced Autocomplete, you’ll have to:

  • Backup your Magento installation in:
    system  tools   backups
  • Disable the compiler in your Magento admin panel if it’s not already disabled in:
    system  tools   COMPILATIONS
  • Refresh your cache in:
    systemselect cache typeactionsrefreshsubmit
  • If you're installing the extension for Magento Enterprise, you need to disable the Enterprise_CatalogSearch module by switching TRUE to FALSE in the file: 
    app/etc/modules/Enterprise_CatalogSearch.xml


Now you can install Enhanced Autocomplete:

  1. Download Enhanced Autocomplete (zip file) from:
    my account my downloads
    Refer to FAQ here: Extensions download
  2. Once Enhanced Autocomplete is downloaded, open the folder and unzip it.
  3. Copy the content of the unzip folder and paste all files and directories in your Magento root directory (the folder content can vary according to the extension but it generally includes app, lib and skin folders).

  4. Once your installation is complete, don't forget to enable the compiler back (if it was already enabled before the installation) and run compilation process.
  5. Refresh your cache, logout from your admin panel and log back in right after.

Next step is to activate your license, to do so, click here: Extension activation

For the Enhanced Autocomplete extension, don't forget to install the Elasticsearch server. 

If you're using Elasticsearch server 2.x, you will have to add the below code in the Elasticsearch configuration file elasticsearch.yml :

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

Then, restart the Elasticsearch server.

Modules activation

Once Enhanced Autocomplete is installed, you have to activate the license: 

  1. Go to your Magento admin panel. A message pops up at the top of the page.

    If the message doesn't appear then you must check that:

    Wyomind's License Manager has not been removed from your installation.
    Wyomind's License Manager is enabled in: app/etc/modules/Wyomind_Licensemanager.xml
    The HTML output for Wyomind_Licensemanager and/or Adminhtml_Notification are not disabled in your system under: system   configuration  advanced advanced

  2. Copy your activation key.

    You can find your activation key in 2 different places:
    - In the confirmation email that you received after purchasing Enhanced Autocomplete
    - In your Wyomind account:MY ACcount My downloads, select Enhanced Autocomplete and click on  . A new page opens where you'll find your activation key (see below).
  3. In your Magento admin go to:
    SysteMConfigurationWyomindYour extension

    Paste the activation key in the Activation Key field and choose between the automatic (yes) or the manual (no) activation method:
    - By choosing Yes, the connection to Wyomind license server will be automatic. 
    - By choosing No, you will have to log on to Wyomind license server yourself.


  4. Save the configuration.
  5. Clear your caches. 
  6. A message appears at the top of your admin panel: Activate it now!  Click on that link.

  7. Copy and paste the license code in the License code field from your admin or simply click on Activate now! 
  8. Finally, refresh your cache, log out and log back in straight after, to complete the installation.

To activate the license of an extension that includes other modules, you’ll have to repeat the steps described above for each extension, using the corresponding activation keys (each module has its own activation key).

Modules use

If you want to index a specific attribute in the search, you need to make them searchable.

For that, go to:
CatalogAttributesManage Attributes

Click on the attribute you want to index, for example country_of_manufacture

For the Use in Quick Search option, choose Yes and save the attribute.

Finally, re-index your products.

Troubleshooting

If you're getting a white page using the extension, you should enable the error reporting in order to display the error. You can do that from index.php.

Most of the time log-out/log-in may solve this issue.

This error means that the Elastisearch server is not running.

Then you need to make sure the Elasticsearch server is installed and launched. For this, you can follow the STEP 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 6 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 6 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 7 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 8 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 9 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