Change 'Sold Out' to 'Coming Soon' only for specific products

Hi there!

I have a collection of products that I want live on the website before our launch date. I have set the stock to 0 so it will show ‘Sold Out’ - however, I want it to say ‘Coming Soon’.

Website here: https://futureselfshop.com/

Thanks!

Ella

Hi Ella

Try tagging them with something like ‘comingsoon’, then inside the theme liquid, where it usually displays sold out, update to add a check for the tag.

Something like (not tested)

{% for tag in product.tags %}
  {% if tag contains 'comingsoon' %}
    Coming Soon!
  {% else %}
    Sold Out
  {% endif %}
{% endfor %}

If you have an OS2.0 theme whose product template uses custom-liquid blocks then make an alternate template with the buy-buttons removed.

And in it’s place add a custom-liquid block with liquid logic and the html for the coming soon text.