Display message when item is out of stock

Hi

i would like to display a message something like ‘available on order - delivery in 2 weeks’ for items which are out of stock.

anyone can tell me step by step what needs to be done? I am new to this so i would appriciate if someone can help

@Dandon

if have able to code try this code product page


{% if product.variants.first.inventory_management == "shopify" %}
{% if product.variants.first.inventory_quantity > 0 %}
We currently have {{ product.variants.first.inventory_quantity }} in stock.
{% else %}
The product is out of stock
{% endif %}
{% else %}
This product is available
{% endif %}

Thanks, can you please guide me where do i need to enter this code?

@Dandon

product page above add to cart button