我尝试了下面的代码并且它也有效,但我觉得它使我的网站不稳定,即有时在第一次点击时购物车成功弹出,有时2-3次点击,有时它不会弹出。 : - (
我想要实现的是:如果数量<0,则添加到购物车按钮文本将被“缺货”替换
在我的主题的product.tpl中,我进行了以下更改,
替换了以下行
<input type="button" value="Add to Cart" id="button-cart" class="button-product-page" />
以下代码
<?php if ($stock == "In Stock") { echo '<input type="button" value="Add to Cart" id="button-cart" class="button-product-page" />'; } else { echo '<input type="button" value="Out Of Stock" class="button-product-page"/>'; } ?>
如果上述代码中有任何修改或微调,请告诉我。