I am relatively new on shopify. I need to make a change on my product page that is causing a lot of issues for us. on or product page the availability tab says “in stock”. now the problem is none pf your products are in stock, they are all made to order. so I either need to replace the line “in stock” with this line “Made to Order - Delivery in 4-6 weeks” or remove availability completely from product page because its making our confused. Really appreciate your help. Thanks
To follow up from @hardik355 's reply on the code part, something you could do to add to this to talk about it more in the shipping policy page and even add the Shipping Policy to your main menu to make it more evident and clear. I’ve added a screenshot for where I mean below:
There is also a great blog post from the content team at Shopify which goes into a lot of detail on how to make the best shipping policy. Because of your specific shipping query, this could be worth reading and possibly applying some of the tips. You can read it here.
Hi, Thank you for your reply. I tried adding it but unfortunately it did not work. I am adding the codes here for you to see. thanks
{% if product.variants.size > 1 %}
{% for option in product.options %}
{% include 'swatch' with option %}
{% endfor %}
{% endif %}
{% endcase %}
- {% if product.available %}{{ 'products.product.Made to Order - Delivery in 4-5 weeks' | t }}{% else %}{{ 'products.product.out_of_stock' | t }}{% endif %}
Please go to sections > product-template.liquid file and find “info-single-product”.
You can change it directly here: https://i.imgur.com/g5Di1J3.png
Hope it helps!