Displaying "Sold Out" and "Coming Soon" Notices in Dawn Theme Version 15.2

Is it possible to display both ‘Sold Out’ and ‘Coming Soon’ notices on my Dawn Theme version 15.2 website, depending on the product status?

I want to ensure that either ‘Sold Out’ or ‘Coming Soon’ is shown based on the product’s availability. How can I set this up so that both notices can be used as needed, rather than just one or the other? What are the steps to achieve this?"

Yes. You could, by tagging the coming soon and out of stock product.

{%- if variant.available == false %}
	{% if product.tags contains 'coming-soon' %}
		Coming Soon
	{% else %}
		{{ 'products.product.sold_out' | t }}
	{% endif %}
{% endif %}
1 Like

Hi Peter, thank you for answering my community question. Can you provided a step by step instructions regarding where to place the code?