Cart Line Customization
The cart_line_customization object represents a customization selected by the customer for a specific cart item, such as an engraving text or an extra topping selection.
Usage Example
{%- comment -%} Show customizations for each cart item {%- endcomment -%}
{% for item in cart.items %}
{% if item.customizations.size > 0 %}
<ul>
{% for c in item.customizations %}
<li>{{ c.group_name }}: {{ c.value }}</li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}Properties
group_name
The name of the customization group.
name
The name of the customization option.
value
The value of the customization.