Change 'Sold out' badge and checkout button to 'Coming soon' for products tagged 'coming soon'

Hey everyone

I’m using the Dawn theme and the ‘sold out’ badges are frustrating me as I have a range of ‘Coming soon’ product and I cant get the sold out badges to stop showing, which is very confusing for customers. Can anyone help me with how to change the ‘sold out’ badge to ‘coming soon’ for products tagged ‘coming soon’?

Also I would like the Add to cart/checkout button to say ‘Coming soon’ as well.

The page where the issue is happening is here - https://olympiathelabel.com/collections/coming-soon/Coming-soon

Thanks.

Hello @mimcreative ,

To change the ‘sold out’ badge to ‘coming soon’ for products tagged ‘coming soon’

{% if product.tags contains 'coming soon' %}
 // coming soon badge
{% else %}
 // default badge code 
{% endif %}

Same logic will work for add to cart button.

Thanks

Thank you for your help - where should I insert this code?

1 Like