Email Templates can contain variables that don't have a value, for example, the total_discount variable. If the variable is not hidden, the Discount field will show up in the emails, which is unnecessary and may even confuse the customer in some cases. The variable can, thus, be hidden to avoid this.
To hide a variable, we can tag it with the @exists property in the template code. It's important that only the variable itself is tagged, as if other variables are included, if the one tagged does not exist, the other variables will disappear as well.
Here's an example:
<!-- @exists total_discount -->
[*total_discount*]
<!-- @end-exists total_discount -->
This should prevent the [*total_discount*] variable from being applied to the Email Template if it doesn't have a value. If there is a total_discount value, however, the variable will display the content.
Comments
0 comments
Please sign in to leave a comment.