Good Morning,
I am creating an online store with Prestashop 1.7.7.7 and I would like to remove the quantity selector that the template brings by default (the template in question also the one that comes by default) since the products are going to be sold by quantity sections (25 , 50,100 ... etc)
Searching in the Prestashop forums and after much searching I found this solution on the route: themes/classic/assets/css/theme.css
.product-quantity .qty {
display:none;}
But the quantity header keeps appearing.
And if I use:
.product-actions .control-label {
display: none;}
The headers of the combinations I have created also disappear.
This other option deletes the header, but the problem is that it also deletes my cart and that I am interested in leaving it to be able to add the products.
.product-add-to-cart {
display:none;}
I have also tried with this option on the route:
themes/templates/catalog/_partials/product-add-to-cart.tpl
Remove:
<span class="control-label">{l s='Quantity' d='Shop.Theme.Catalog'}</span>
Change:
type="number"
name="qty"
id="quantity_wanted"
to:
type="hidden"
name="qty"
But none of these options have finished solving the problem for me.
Does anyone have any other suggestions?
Thank you so much beforehand.