Remove 'add to cart' button at the bottom of my product page at prestige theme?

Hey,

I use the theme: prestige. And it has an ‘add to cart’ button if you scroll down the product page. I would like to get rid of this button, but I can’t find how to do this anywhere.

https://ibb.co/gyq87YC (link for photo)

Link of webshop is: https://leon-de-came.myshopify.com

Password: demy

Someone who can help me?

King Regards

1 Like

@LeondeCame

There must be an option in your theme to disable this add to cart button but anway you can disable via code also. Please add the following code at the bottom of your assets/theme.scss.liquid file.

.template-product button.sticky-cart-button {
    display: none !important;
}

Hope this works.

Thanks!

Hello,
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.css

.prestige--v1.template-product .sticky-cart-button {
    display: none !important;
}

Yes, it works. Thank you!

1 Like