在电子邮件中为特定折扣购买消息

时间:2014-03-13 23:12:25

标签: shopify liquid

这是我认为可行的代码,但它没有:

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

有人可以解释一下这有什么问题吗?

1 个答案:

答案 0 :(得分:2)

我知道使用电子邮件模板代码,折扣代码字段可以是订单的多个折扣代码,请参阅此文档以获得简要说明:

http://docs.shopify.com/manual/settings/notifications/email-variables#discounts

您是否尝试过使用: {%if discount.first.code =='testcoupon123'%}