Disable the quantity selector on cart page for every product - Theme Prestige

Solved

Disable the quantity selector on cart page for every product - Theme Prestige

Fouc_the_Great
Tourist
13 0 0

Hello guys,

I' ve been stuck with this. On the face of it, it doesn't seem to be a big issue but I was unable to locate the file to modify in order to get rid of the quantity selector in the cart.
Cause I am only selling unique items and do not need that function at all.
I am using the prestige theme and there is no native function to do so. Any ideas?

Thanks a lot

Accepted Solution (1)
Michael_Pink
Shopify Partner
450 77 107

This is an accepted solution.

Hi @Fouc_the_Great 
if you want to remove it:
Please use this code:

#sidebar-cart .QuantitySelector{
   display: none;
}
My life is sharing!
I hope my solution can help you save at least 1$
Build Page faster with: PageFly PageBuilder App.

shopify.expert.team@gmail.com

View solution in original post

Replies 4 (4)

Michael_Pink
Shopify Partner
450 77 107

Hi @Fouc_the_Great 

Thank you for your question. 
You can try follow this path:
Themes => edit code => asset => theme.scss.liquid
and add this code to bottom of the file theme.scss.liquid

#sidebar-cart .QuantitySelector{
    pointer-events: none;
}
My life is sharing!
I hope my solution can help you save at least 1$
Build Page faster with: PageFly PageBuilder App.

shopify.expert.team@gmail.com
Fouc_the_Great
Tourist
13 0 0

Thanks @Michael for taking the time

Just tried it but it doesn't change anything. The qty selector still shows 😕

Michael_Pink
Shopify Partner
450 77 107

This is an accepted solution.

Hi @Fouc_the_Great 
if you want to remove it:
Please use this code:

#sidebar-cart .QuantitySelector{
   display: none;
}
My life is sharing!
I hope my solution can help you save at least 1$
Build Page faster with: PageFly PageBuilder App.

shopify.expert.team@gmail.com
Fouc_the_Great
Tourist
13 0 0

Dude, you rock!