I am wanting to add an out of stock and in stock message on my product page. I am using theme Dawn and have attached some example photos for reference. Thanks for the help
Website - www.evrenclothing.com
Password - Chewno
I am wanting to add an out of stock and in stock message on my product page. I am using theme Dawn and have attached some example photos for reference. Thanks for the help
Website - www.evrenclothing.com
Password - Chewno
Hi @isaacdob ,
You can simply add the code below in the product page.
{% if product.available == false %}Out of stock {% else %} In Stock{% endif %}
Let me know if you need any assistance.
Thank you
Hi @isaacdob
1ใEdit main-product.liquid
2ใFind โ{% - whenโ popup โ-%}โ and add the following code above
{% if product.available == false %}
OUT OF STOCK
THIS SIZE IS OUT OF STOCK
{% else %}
IN STOCK โ
{%- endif %}