Shopify - 有条件的折扣代码

时间:2014-03-13 16:18:51

标签: php variables shopify liquid

我想知道是否有可能在用户将优惠券应用到购物车时向用户打印消息,如下所示:

{% if discount = testcoupon123 %} 
You will get a free item!
{% endif %}

有人可以告诉我为什么这不起作用吗?

1 个答案:

答案 0 :(得分:1)

尝试:

{% for discount in discounts %}
   {% if discount.code = "testcoupon123" %} 
      You will get a free item!
   {% endif %}
{% endfor %}