在 prestashop 1.7 中显示模态确认之前禁用添加到购物车按钮

Disable add to cart button before modal confirmation is shown in prestashop 1.7

在我的 prestashop 1.7.6.8 上,我注意到将产品添加到购物车然后显示确认模式弹出窗口的时间非常慢。 是否可以避免用户在此延迟期间点击按钮?

谢谢

嗨,我是这样做的:

$(document).ajaxStart(function(){
  $( '.add-to-cart' ).addClass("sending");
});
$(document).ajaxStop(function(){
  $( '.add-to-cart' ).removeClass("sending");
});