Lava Filters - Size
Category:Text
Description:Returns the length of the string, including all characters and spaces.
Input: "Person": {
"FullName": "Ted Decker"
}
Lava: {% assign nameLength = Person.FullName | Size %}
{% if nameLength < 8 %}
{{ Person.FullName }}
{% else %}
{{ Person.FullName | Truncate:8 }}
{% endif %}
Output: Ted D...