문제

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

도움이 되었습니까?

해결책

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();
    }
});
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top