Add an out of stock / in stock message on product page

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 :slightly_smiling_face:

Website - www.evrenclothing.com

Password - Chewno

Hi @isaacdob

Do you want something like this?

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 %}