swissup/module-breeze-amasty-shopby

Amasty Improved Layered Navigation integration with Breeze Frontend

Installs: 1 633

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 1

Open Issues: 0

Language:JavaScript

Type:magento2-module

1.3.0 2025-03-26 14:10 UTC

This package is auto-updated.

Last update: 2025-03-26 14:10:38 UTC


README

Tested on Improved Layered Navigation by Amasty 3.3.0

Required patches

vendor/amasty/shopby/view/frontend/web/js/amShopbyAjax.js

Replace the following code in the callAjax function (line 180):

    return $.ajax({
        url: clearUrl,
        data: data,
        cache: true,
        success: function (response) {
            try {
                $.mage.amShopbyAjax.prototype.startAjax = false;

                response = JSON.parse(response);

                if (response.isDisplayModePage) {
                    throw new Error();
                }

with

    return $.ajax({
        url: clearUrl,
        data: data,
        cache: true,
        success: function (response) {
            try {
                $.mage.amShopbyAjax.prototype.startAjax = false;

                response = typeof response === 'object' ? response : JSON.parse(response);// Breeze patch

                if (response.isDisplayModePage) {
                    throw new Error();
                }

Installation

composer require swissup/module-breeze-amasty-shopby
bin/magento setup:upgrade --safe-mode=1