View Source Liquex.Tag.IfTag (liquex v0.13.1)
Executes a block of code only if a certain condition is true.
Input
{% if product.title == "Awesome Shoes" %}
These shoes are awesome!
{% endif %}Output
These shoes are awesome!
Executes a block of code only if a certain condition is true.
{% if product.title == "Awesome Shoes" %}
These shoes are awesome!
{% endif %}These shoes are awesome!