web200/magento-elasticsuite-ajax

Magento 2 Module to add ajax navigation to elasticsuite module

Installs: 67 660

Dependents: 0

Suggesters: 0

Security: 0

Stars: 21

Watchers: 4

Forks: 8

Open Issues: 7

Type:magento2-module

v1.0.2 2023-01-12 22:25 UTC

This package is auto-updated.

Last update: 2024-05-13 01:47:30 UTC


README

Magento 2 Module to add ajax navigation to elasticsuite module

Installation

$ composer require "web200/magento-elasticsuite-ajax":"*"

Features

  • Ajax navigation on category pages (Categories / Swatches / List)
  • Infinite navigation pages. (Can be enable / disable in Store > Configuration > Elasticsuite > Ajax Settings)

Varnish

In order to cache classic page and xhr request you need to set different cache in varnish. Thanks @mfickers

sub vcl_hash {
    ...

    # Sort AJAX requests distinct from regular requests
    if (req.http.X-Requested-With == "XMLHttpRequest"){
        hash_data(req.http.X-Requested-With);
    }

    ...
}