A prior post I found (https://forums.wpeasycart.com/forum/...ntity-selector) stated that in order to remove the quantity selector from a product, I should use the following CSS code (Settings>Design>Custom CSS):
.page-id-XXX .ec_details_quantity {
display: none;
}
...where the XXX value was to be the "page id" of the product I wanted to hide...however, when I implemented this code, I quickly found out that the "XXX" value for all my products is the same..."page-id-662" I do not know what the 662 means, as it is not related to my products.
How do I target only certain products to not show the quantity selector?
.page-id-XXX .ec_details_quantity {
display: none;
}
...where the XXX value was to be the "page id" of the product I wanted to hide...however, when I implemented this code, I quickly found out that the "XXX" value for all my products is the same..."page-id-662" I do not know what the 662 means, as it is not related to my products.
How do I target only certain products to not show the quantity selector?
Comment