문제

I was wondering if its possible to print a message to the user when they apply a coupon to their cart, something like this:

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

Can anyone tell me why this doesn't work please?

도움이 되었습니까?

해결책

Try:

{% for discount in discounts %}
   {% if discount.code = "testcoupon123" %} 
      You will get a free item!
   {% endif %}
{% endfor %}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top