这是我认为可行的代码,但它没有:
{% for discount in discounts %}
{% if discount.code == 'testcoupon123' %}
You will get a free item!
{% endif %}
{% endfor %}
有人可以解释一下这有什么问题吗?
答案 0 :(得分:2)
我知道使用电子邮件模板代码,折扣代码字段可以是订单的多个折扣代码,请参阅此文档以获得简要说明:
http://docs.shopify.com/manual/settings/notifications/email-variables#discounts
您是否尝试过使用: {%if discount.first.code =='testcoupon123'%}