KleiDav Posted September 22, 2016 Share Posted September 22, 2016 Hello Is there a way to hide the quantity +/- box + buttons, but only on specific products? Almost found here what I wanted to do : https://www.prestashop.com/forums/topic/340905-solved-remove-quantity-option-on-product-page/ But this will hide globally, not per product. Thanks ! Link to comment Share on other sites More sharing options...
Rolige Posted September 22, 2016 Share Posted September 22, 2016 You can hide it also through CSS, in the default theme you could achieve this by adding this code in the product.css body.product-1 #quantity_wanted_p .product_quantity_down, body.product-1 #quantity_wanted_p .product_quantity_up { display: none; } In this example will hide the quantity buttons for the product ID 1, if you need hide for an specific product, just change the 1 in body.product-1 for the ID that you needs hide. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now