Is it possible to change the ‘sold out’ tag to say ‘coming soon’? I have an entire collection I’m launching at a later date and want people to know that they aren’t actually sold out!
Also wondering if it is possible to only do it to a collection instead of all products since I do have some sold out items in a different collection that I won’t re-stock but if not, I can take it the sold out items down.
I use the Studio theme.
Thanks!
Yes you can do both of those by editing your theme.
For example, if you have Sold Out showing on the product page, look in the theme files that control that page (Templates/product.liquid, or maybe a snippet called product-form.liquid, etc… it depends on the theme but if you start at the Template level you can read the code to see which sections / snippets are inserted).
Once you find that code, just replace the text.
If you want to do it on certain products or certain collections, use Liquid conditions, for example you would replace Sold Out with this:
{% if collection.handle == "some-collection-handle" %}
Coming Soon
{% else %}
Sold Out
{% endif %}
Make sure you duplicate your live theme then work on the new, unpublished theme so you can test your edits before publishing live.