我需要一种解决方案,以在产品价格为零时从产品页面隐藏“添加到购物车”按钮。我尝试使用此代码,但是按钮并未隐藏:
{% if (price > 0) %}
<input type="button" value="{{ button_cart }}" data-loading-text="{{ text_loading }}" id="button-cart" class="btn btn-mega btn-lg " />
{% endif %}
如果price
等于0,如何在OpenCart 3中隐藏“添加到购物车”按钮?