turner33 Posted March 20, 2023 Share Posted March 20, 2023 Looking to locate 'Show Quantity' options for products in 7.1 version. It used to be under - design/site styles/products/options (see photo for reference). Is it possible to turn this on/off in the new editor? Link to comment
tuanphan Posted March 24, 2023 Share Posted March 24, 2023 Hi, You can also consider using some CSS code to do this. To hide it on all products, add this to Design > Custom CSS .product-quantity-input { display: none !important; } To hide it on a product > edit that product > Additional Info > Add a Code Block > Paste this code <style> .product-quantity-input { display: none !important; } </style> To hide it on some specific products, first you need to add a tag, eg: hideq for these products, then use this code to Design > Custom CSS .tag-hideq .product-quantity-input { display: none !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment