Skip to content

Instantly share code, notes, and snippets.

@seedcms
Created January 18, 2017 23:54
Show Gist options
  • Save seedcms/1ae8f48d6321f776388891ccf2e90341 to your computer and use it in GitHub Desktop.
Save seedcms/1ae8f48d6321f776388891ccf2e90341 to your computer and use it in GitHub Desktop.
Cart table after the updated line items
<tbody class="line-items">
{% for item in cart.items %}
<tr>
<td>{{ item.product.title }}</td>
<td>{{ item.quantity }}</td>
<td>
{{ item.line_price }}
{% if item.total_discount > 0 %}
<s>{{ item.original_line_price }}</s>
( {{ item.message }} )
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment