Skip to content

Instantly share code, notes, and snippets.

@davelowensohn
Last active February 9, 2017 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davelowensohn/a161c4c4e9231a0fed9844e41d970daa to your computer and use it in GitHub Desktop.
Save davelowensohn/a161c4c4e9231a0fed9844e41d970daa to your computer and use it in GitHub Desktop.
Shopify "Final Sale" sticker (for product & cart)
{% if item.product.tags contains 'final-sale' %}
<div class="final-sale-warning">FINAL SALE</div>
{% endif %}
{% if product.tags contains 'final-sale' %}
<div class="final-sale-warning">FINAL SALE</div>
{% endif %}
.final-sale-warning {
color: #fff;
background-color: #000;
display: inline-block;
padding: 2px 5px;
font-size: 10px;
letter-spacing: 1px;
margin-top: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment