Hi,
This is only happening on mobile, but after something is added to the cart, when you view the Cart, you can’t change the quantity of the item like you can on desktop. How can I fix this?
Site: https://challenge2rise.com/
Thanks!
Hi Taryn!
Thank you for using Enfold.
The quantity button is disabled on mobile by default. You can add this in the Quick CSS field:
@media only screen and (max-width: 767px) {
.responsive .shop_table .product-quantity {
display: block;
}
}
You’ll see why it is disabled.
Best regards,
Ismael
Ah – I see. Thanks so much for the response! :)