How can I remove the 'Quick View' hover button from my website?

Need help to remove “Quick View” button on hover. Please help.

Site: https://exceedfitness-store.myshopify.com/

pass: exceed

2 Likes

@Janamir

Sorry, you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community!

Thanks for your good question.

There may be a theme setting to Show the 'Quick view’ or 'buy now’ button.

span.btn.btn-theme.gradient-theme-vertical.product-card__overlay-btn.js-btn-quickview {
    display: none !important;
}

@Janamir

  1. Navigate to Online Store-> Theme->Edit code
  2. Asset->/theme.css or theme.scss ->paste the below code at the bottom of the file.
  3. Save it.

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
.product-card .js-btn-quickview {
display: none;
}