In my custom theme there was this code for Add to cart button:
<button type=”button” class=”button-form” οnclick=”productAddToCartForm.submit()”><span><?php echo $this->__(’Add to Cart’) ?></span></button>
The problem was that nothing happened when you clicked it. Just remove type="button" so it looks like this:
<button class=”button-form” οnclick=”productAddToCartForm.submit()”><span><?php echo $this->__(’Add to Cart’) ?></span></button>
It worked for me…
本文介绍了一种解决电子商务网站中“添加到购物车”按钮点击无效的问题。通过修改HTML按钮类型,从“button”改为不指定类型,使得按钮能够正常触发表单提交,解决了用户体验中的障碍。
6661

被折叠的 条评论
为什么被折叠?



