Is it possible to remove x number of a product in the cart. Without retrieving the whole cart first?
Is have a page where i through the client adds product to the cart async. I use fetch and the cart command "AddMulti" for this purpace. (And som more stuff in between with loading trhough products, adding them as "new formData()")
Lets say the user have added 9 of a product but only needed 7. Is it possible to send a command saying "Remove 2 times {{product number}} from cart" on the same page. Or do i have to have to redirect the user to the cart and make them change it there?
Thanks in advanced