The plus and minus buttons are not functioning. No problem because I the products need to be ordered one by one. How can I remove the quantity controls?
url: https://www.flowersbyfrederique.com/virtuemart/new-life-detail
Quantity controls +/- not working, how to remove
Could you share the Admin + FTP account so I can check?
I am just looking for the lines of code to remove the 'plus' and 'minus' signs. Would like to do this myself, do you now where I can find that, in what file?
gewoon-jeroen That's URL doesn't work, that's why I asked for the login info. Coud you share the correct URL?
Ah, I see, the correct URl is: https://www.flowersbyfrederique.com/winkel/new-life-detail
gewoon-jeroen Thanks for the URL, you can try with this custom css:
div.productdetails-view .addtocart-bar .quantity-controls {
display: none;
}
- Edited
thanks.
I have one more issue on this page: I would like for the textinput box to be bigger. I have figured out the settings I would like using Chromes Dev tools. But I cannot find the right name of the class to address in the override file.
I found the element is referred to as: <textarea id="116" class="vmcustom-textareainput validate[maxSize[300]] field" rows="5" cols="60" maxlength="300" name="customProductData[21][5][116][comment]" placeholder=""></textarea>
What should be the right class name?
You can override with this rule:
.product-field-display textarea {
width: 300px;
}
and adjust to your desired value.