How to remove the 'Buy Now' button when a product is sold out?

Good morning,

I would like when a product is sold out, the “buy now” button which is grayed out, would disappear completely.

Product exemple : (size xs is sold out) https://jadis-shop.com/products/doudoune-tnf-700-nupste-retro-1996?variant=48850241093961

Remove what is in blue :

Do you know how to do it please?

Theme: Dawn
Website: jadis-shop.com
password:rj

thanks in advance

Hi,

To solved that issue, you should go to file code which is handling show that button and add logic code like this:

{% if product.available %}
   //show button
{% endif %}