I know in Shopify you can add multiple products like this:
/cart/add?id[]=VARIANT_ID1&id[]=VARIANT_ID2
My question is how would you adjust the quantity of each product that’s being added?
For example I wanted VARIANT_ID1
to have a quantity of 2 and VARIANT_ID2
to have a quantity of 1?
I tried this:
/cart/add?id[]=VARIANT_ID1&quantity=2&id[]=VARIANT_ID2&quantity=1
But it just made the quantity 1 for everything.
3
Answers
Update
There was an update to the AJAX API that allows now to add multiply variants with different quantities with the same request.
Example:
Old Answer
You can’t use the quantity as a separate item for each variant.
You have a few options but they all have some cons.
Please refer to this doc for the requests: https://help.shopify.com/en/themes/development/getting-started/using-ajax-api
Using
/cart/add.js
You can create multiply AJAX request and add each separate item as a new AJAX request.
Pros:
Cons:
Using
/cart/update.js
You can make a single request and pass different quantity to each variant.
Pros
Cons
So the solution may be to get the
cart.js
response check if the current variants are present and if they are then make anupdate.js
while adding the quantity to the existing one. So it’s not so straightforward.I can’t think of an easier solution but at the end you might need a minimum of 2 AJAX calls to add a different quantity.
I solved this problem by using the below code snippet:
/cart/update?updates[VARIANT_ID1]=quantity&updates[VARIANT_ID2]=quantity
The easier way is to use Shopify Permalinks.
A cart permalink takes your customers directly to the first page of the checkout screen with items pre-loaded into their cart.
This is what a cart permalink looks like:
Where 70881412 is the product variant’s unique ID and 1 is the quantity.
So the format of the url is: