Prestige Theme Delete "Quick Shop" Button

I am trying to delete the “quick shop” button on my store. I have the Prestige Theme. I have deselected “Show accelerated checkout buttons” and have attempted to edit the code for the theme. Any suggestions would be most helpful. Thank you

@ek4

Please share your store URL.

sorry about that! My url is: FineArzt.com

Hi @ek4,

Please go to Customize > Theme settings > Custom CSS and add code:

.product-card__info button.tbut {
    display: none !important;
}

If I helped you, then a Like would be truly appreciated.

@ek4

you try with theme settings..
In Customize, look for Theme Settings → Products → Quick Shop and simply disable it.

Thanks!

Hey @ek4

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above </ body> tag
<style>
button.tbut {
    display: none !important;
}
</style>

RESULT:

If I managed to help you then a Like would be truly appreciated.

Best,
Moeed

“Quick shop” is different from “Accelerated checkouts”
Look at the theme documentation here:

Thank you so much! that worked!

Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.