Skip to content

Instantly share code, notes, and snippets.

@ivandurst
ivandurst / product-grid-item.liquid
Created July 1, 2016 22:44
Shopify add a tag to a product that's on sale
{% comment %}
Add a tag to a product that's on sale. Add this in your template for displaying a product in a grid, for me it's called product-grid-item.liquid
{% endcomment %}
{% assign on_sale = false %}
{% if product.compare_at_price > product.price %}
{% assign on_sale = true %}