Why aren't product customizations showing up at checkout?

Hi everyone,

For the life of me, I can’t figure out why product customizations (Personalized text and color choice) are not showing up at checkout. I’ve tried the codes found in this forum, and none of them have worked.

I’m using the theme “Narrative” and my store url is: amodernwedding.com

Any help is appreciated! Thank you!

Hi @amodernwedding

Would you mind sharing the code snippet you’re using for the line item customization?

Of course:

{% assign property_size = item.properties | size %}
{% if property_size > 0 %}
  {% for p in item.properties %}
    {% assign first_character_in_key = p.first | truncate: 1, '' %}
    {% unless p.last == blank or first_character_in_key == '_' %}
      {{ p.first }}:
      {% if p.last contains '/uploads/' %}
        <a class="lightbox" href="{{ p.last }}">{{ p.last | split: '/' | last }}</a>
      {% else %}
        {{ p.last }}
      {% endif %}
      <br>
    {% endunless %}
  {% endfor %}
{% endif %}

I placed that inside the cart-template.liquid, under {{ item.product.title }}.