Deleting 'add to cart' button on product site

Hi Shopify Community,

I tried to remove the “add to cart” button on my product site.

Unfortunately, I didn’t find a way to do so. Can anyone help me fix it? (URL address: https://www.olenia.de)

BR, Olivia

Hi there,
Jack from OpenThinking here!

I don’t know why you’d want to do that, but still..

Put the following code at the very end of your assets/theme.css file.

.product__form-container { display: none!important; }

this will hide the buy buttons on the product page only.

let me know if this works for your. If yes; accept my answer and give me thumbs up! Thank you.

@olivia19 , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
@media (min-width: 750px){
    .product__description{
    width: 100% !important;
}
}

.product__form-container { 
    display: none !important; 
}

Please let me know whether it works.

Kind regards,
Diego