How do I remove the 'Add to Cart' button from all products?

How to remove add to cart on all products

Please help www.angussteakhouse

Hi @Anguspk1 ,

Please provide a working website link to best assist you. Thank you

www.angussteakhouse.pk

Hi @Anguspk1 ,

Not familiar with expanse theme if there is an option in your theme editor to remove the buy button. Anyway, you can do it with the code too.

I see you are already hiding the entire form using javascript. I would suggest to use CSS instead so the container will be hidden when page is loaded.

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the theme.css
  3. Paste the code below at the very bottom of the file.

To hide the Add to cart button only:

[id^="AddToCart-"].add-to-cart {
    display: none;
}

To hide the entire form:

[id^="AddToCartForm-"] {
    display: none;
}

It worked. You are a gem.

Can we add a button replacing add to cart with Book Your Table . So when person clicks this then form opens and he fills form and sends.