Dawn Theme - Remove Quick View Button

So…unfortunately when I first built my website I inserted a few custom codes that I didn’t save anywhere for reference. One of the custom codes was to create a ‘quick view’ tile on all of my product cards, however I’ve now noticed that this quick view does not include any of product options and allows a customer to ‘add to cart’ without including the necessary information like their desired size.

I would like to remove this ‘quick view’ option but I have no idea how to locate this code and remove it. Does anyone have any suggestions on how to do this?

Or - does anyone know how I can include these product options in the quick view pop up? I’m using product options through the King Product Options & Variant app and they’re supposed to be required for a customer to add to cart, but it’s not connecting with the quick view window.

Any help is appreciated thank you!

Hi @silverandashco ,

Thank you for reaching out to the Shopify community. I’d be glad to assist you. Could you kindly share your store URL and
password (if it’s password-protected) so I can review it and provide you with an update?

Hey @silverandashco ,

We’d love to help you out with this — for free! Just DM us your collaborator code, and we’ll send you a store access request. Once inside, we’ll locate the custom code for the quick view, comment it out, and let you know exactly where it’s located so you can remove it yourself if needed.

Alternatively, if you’d prefer, we can handle the removal for you while ensuring all functionalities remain intact.

Let us know how you’d like to proceed!

Cheers,
Shubham | Untechnickle

Hello! My site is www.silverandash.co. Thanks for your help!!

Hi @silverandashco ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

.quick-add__submit {
    display: none !important;
}

Hmm, I copy & pasted base.css/theme.css/style.css/main.css/custom.css into the code file search and nothing came up. Is there another option?

Go to Online Store > Themes > Edit Code, find the tag in theme.liquid, and add your custom CSS code right below it.


That worked - thank you!