Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
How would I show an Item's SKU in Cart on Dawn Theme? It seems that I can only find this for the Debut template.
cart-template.liquid
file. This file controls the layout and display of the cart page.cart-template.liquid
file and search for the section or code responsible for rendering the individual items in the cart. It may look like {% for item in cart.items %}
or similar.
{% if item.variant.sku %}
<p>SKU: {{ item.variant.sku }}</p>
{% endif %}
Thanks for the info. However, there is not a file cart-template.liquid in the sections folder.
same problem here: there is not a file cart-template.liquid in the sections folder