Home

Awesome

Algolia Search & Discovery extension for Magento 2

Latest version Magento 2

PHP

CircleCI


Features

The Algolia extension replaces the default search in Magento Open Source and Adobe Commerce with a robust autocomplete search menu and Instantsearch results page.

This extension replaces the default search of Magento with a typo-tolerant, fast & relevant search experience backed by Algolia. It's based on algoliasearch-client-php, autocomplete.js and instantsearch.js.

Learn more at our official website Adobe Commerce / Magento

Demo

Try the autocomplete and the instantsearch results page on our live demo.

Magento 2.4 compatibility & extension versions End of Life

Magento 2.3 and earlier versions are no longer supported by the Algolia extension.

Version 3.x of our extension is compatible with Magento 2.4. Review the Customisation section to learn more about the differences between our extension versions.

Extension VersionEnd of LifeMagentoPHP
v3.7.x10/10/2023~2.3.7||~2.4.5||~2.4.6~7.3.0||~7.4.0||~8.1.0||~8.2.0
v3.8.x3/8/2023~2.4.5||~2.4.6~7.4.0||~8.1.0||~8.2.0
v3.9.x10/13/2023~2.4.5||~2.4.6~7.4.0||~8.1.0||~8.2.0
v3.10.x12/12/2023~2.4.6~8.1.0||~8.2.0
v3.11.x1/26/2024~2.4.6~8.1.0||~8.2.0
v3.12.x8/2/2024~2.4.6~8.1.0||~8.2.0
v3.13.xN/A~2.4.6~8.1.0||~8.2.0
v3.14.xN/A~2.4.6||~2.4.7~8.1.0||~8.2.0||~8.3.0

Documentation

Installation

The easiest way to install the extension is to use Composer and follow our getting started guide.

If you would like to stay on a minor version, please upgrade your composer to only accept minor versions. The following example will keep you on the minor version and will update patches automatically.

"algolia/algoliasearch-magento-2": "~3.14.1"

Customisation

The extension uses libraries to help assist with the frontend implementation for autocomplete, instantsearch, and insight features. It also uses the Algolia PHP client to leverage indexing and search methods from the backend. When you approach customisations for either, you have to understand that you are customising the implementation itself and not the components it is based on.

These libraries are here to help add to your customisation but because the extension has already initialised these components, you should use hooks into the area between the extension and the libraries. Please check our Custom Extension for refrence

The Extension JS Bundle

Knowing the version of the library will help you understand what is available in these libraries for you to leverage in terms of customisation. This table will help you determine which documentation to reference when you start working on your customisation.

Extension Versionautocomplete.jsinstantsearch.jssearch-insights.jsrecommend.js
v3.x0.38.04.15.01.7.1NA
v3.9.11.6.34.41.01.7.11.5.0
v3.10.x1.6.34.41.01.7.11.8.0
v3.11.01.6.34.41.02.6.01.8.0
v3.13.01.6.34.63.02.6.01.8.0
>=v3.14.x1.6.34.63.02.6.01.15.0

The autocomplete and instantsearch libraries are accessible in the algoliaBundle global. This bundle is a prepackage javascript file that contains it's dependencies. What is included in this bundle can be seen here:

v3.x latest bundle: https://github.com/algolia/algoliasearch-extensions-bundle/blob/ISv4/package.json

The search-insights.js library is standalone.

Refer to these docs when customising your Algolia Magento extension frontend features:

The Algolia PHP API Client

The extension does most of the heavy lifting when it comes to gathering and preparing the data needed for indexing to Algolia. In terms of interacting with the Algolia Search API, the extension leverages the PHP API Client for backend methods including indexing, configuration, and search queries.

Depending on the extension version you are using, you could have a different PHP API client version powering the extension's backend functionality.

Extension VersionAPI Client Version
v3.x2.5.1
v3.6.x3.2.0
v3.11.03.3.2
>=v3.14.x4.0.x

Refer to these docs when customising your Algolia Magento extension backend:

Support

For feedback, bug reporting, or unresolved issues with the extension, please visit our Support Center where you can search the knowldge base and contact the Support team. Please include your Magento version, extension version, application ID, and steps to reproducing your issue. Add additional information like screenshots, screencasts, and error messages to help our team better troubleshoot your issues.

Contributing

To start contributing to the extension follow the contributing guildelines.