Frage

I have different ajax based product carousels in my home page

The problem is ajax add to cart is not working on carousel products after products loaded through ajax

War es hilfreich?

Lösung

In your ajax success function use this code:

jQuery( "form[data-role='tocart-form']" ).catalogAddToCart();

It will reinitialize add to cart

jQuery.ajax({
    url: "/request",
    type: "POST",
    success: function (res) {
        //Other code here

        jQuery( "form[data-role='tocart-form']" ).catalogAddToCart();
    }
});
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit magento.stackexchange
scroll top