web200/magento-elasticsuite-ajax

为 elasticsuite 模块添加 Ajax 导航的 Magento 2 模块

安装次数: 77,010

依赖者: 0

建议者: 0

安全: 0

星标: 22

关注者: 4

分支: 8

开放问题: 7

类型:magento2-module

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

This package is auto-updated.

Last update: 2024-09-13 02:33:41 UTC


README

为 elasticsuite 模块添加 Ajax 导航的 Magento 2 模块

安装

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

特性

  • 类别页面上的 Ajax 导航(类别 / 选项卡 / 列表)
  • 无限导航页面。(可以在“商店 > 配置 > Elasticsuite > Ajax 设置”中启用或禁用)

Varnish

为了缓存经典页面和 xhr 请求,您需要在 varnish 中设置不同的缓存。感谢 @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);
    }

    ...
}