Hi everyone,
I would like to ask on how will I be able to add in a certain message for customers on their Email Order Notification if they’re order value is over $200?
Settings → Notifications → Order Confirmation
My current code looks like this:
{% if order.total_price >= 200 %}
**Message Here**
{% endif %}
As of this moment, even if the order I checkout as a test isn’t over $200, I still receive the Message Here.
How do I enable it only for those who have reached $200 on their order?
Thank you for helping

