Prestashop添加到购物车按钮错误

时间:2015-01-24 16:07:22

标签: prestashop cart submit-button

我有按钮的问题"添加到购物车"而且我不知道什么是错的。就这样发生了。没有编辑任何代码。按下按钮时,将禁用排序时间。代码可能出错的任何想法?这是CSS问题还是其他什么?

enter image description here

1 个答案:

答案 0 :(得分:0)

将产品添加到购物车时,该按钮被禁用。 您将找到以下所有代码:

/yourtemplate/js/modules/blockcart/ajax-cart.js

如果未编辑ajax-cart.js,则在第304行您会找到:

$(callerElement).prop('disabled', 'disabled');

在ajax电话会议之后,你有:

if (addedFromProductPage)
    $('#add_to_cart button').removeProp('disabled').removeClass('disabled');
else
    $(callerElement).removeProp('disabled');

所以要回答你的问题,这不是问题,你必须调整你的css for disabled按钮,你会得到的方式:)