Hi Shopify community!
Can you suggest a way to “hide/remove” the quantity selector? I am using dawn theme 8.0
Thanks in advance!
A user seeks to hide or remove the quantity selector on the cart page in Dawn theme 8.0. Multiple solutions are provided:
Initial Solutions (All Products):
base.css file to hide the quantity selector globallyquantity-input or quantity-popover with display:noneproduct-template.liquid, which isn’t relevant for Dawn 8.0Key Development:
The original poster clarifies they need this feature only for specific products, not all items.
Product-Specific Solution:
Status: The discussion remains open with the focus shifted to implementing conditional visibility based on product selection rather than a site-wide change.
Hi Shopify community!
Can you suggest a way to “hide/remove” the quantity selector? I am using dawn theme 8.0
Thanks in advance!
@parallelism23 - can you share your site link? it will need css
product-template.liquid file.product-template.liquid file and search for the line of code that generates the quantity selector. It is typically something like and remove:
Hi [email removed]Parallelism23,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at the bottom of the file → Save
#shopify-section-template--18571918049572__cart-items cart-items quantity-input{display:none}
Hope my solution works perfectly for you.
Cheers!
Oliver | PageFly
Hi thanks for your help!
However we realize that this should ONLY be applicable to certain products. Will this be feasible?
You can give the list of product is disabled Quantity Selector
Hi @parallelism23 ,
Please refer the video below how you can hide quantity selection for specific products.
Hope this will helps…
From your Shopify Admin, navigate to Online Store > Themes > Edit Code
In the Assets folder, open base.css and add your CSS code at the end
quantity-popover {
display: none;
}
Note: If you’d like my help with your store customization, feel free to contact me at devcodersp@gmail.com
Please like and accept my solution. ![]()