Validate inputs
Validating inputs and warning the user is an essential part of handing over your template to others users
Character amount
Simple warning
{% assign header_length = article.header_text | size %}
{% if header_length > 15 %}
<span style="color:red;">⚠️{{ article.header_text }}</span>
{% else %}
{{ article.header_text }}
{% endif %}
Remove excess

empty field
Character types
Numbers only

Contains a specific wording or character

Last updated