Created
January 20, 2019 03:04
-
-
Save atikju/b72957a971fc311f05f752d442c59f83 to your computer and use it in GitHub Desktop.
Shopify - Show Sold Out Badge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% assign sold_out = false %} | |
| {% assign sold_out_text = 'products.product.sold_out' | t %} | |
| {% unless product.available %} | |
| {% assign sold_out = true %} | |
| {% endunless %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment