How can I disable the "add to cart" button entirely and only keep my Add to quote?

Hi There!

How can I disable the “add to cart” button entirely and only keep my Add to quote button on all my products? I am using the dawn theme.

Our website is www.norsebranding.co.za

I would really appreciate your help!!!

Hi @norsebranding ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Inside head tags. You need create style tags. After insert my code inside style tag

.product-form__submit[name="add"] {
    display: none !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like