{%- if cart != empty -%} {%- for item in cart.items -%}
{%- if item.image -%}
{{ item.image.alt | escape }}
{%- endif -%}
{%- if settings.show_vendor -%}

{{ item.product.vendor }}

{%- endif -%}

{{ item.product.title | escape }}

{%- unless item.product.has_only_default_variant -%} {%- for option in item.options_with_values -%}
{{ option.name }}:
{{ option.value }}
{%- endfor -%} {%- endunless -%} {%- for property in item.properties -%} {%- assign property_first_char = property.first | slice: 0 -%} {%- if property.last != blank and property_first_char != '_' -%}
{{ property.first }}:
{%- if property.last contains '/uploads/' -%} {{ property.last | split: '/' | last }} {%- else -%} {{ property.last }} {%- endif -%}
{%- endif -%} {%- endfor -%}
{%- if item.selling_plan_allocation != null -%}

{{ item.selling_plan_allocation.selling_plan.name }}

{%- endif -%}
{%- endfor -%} {%- endif -%}