I am working on new store for our custome in shopify platform. As i am new to this shopify, please provide your tips. So that it could help me to resolve this issue.
I want to add user’s desired product items into t Wish list in their user account. So that, user could view that list directly and make an order.
In shopify, is there any API or Object to store user’s favorite items into their favorite list. So that, next time or in future, they could make an order from favorite list itself.
Form this out json, prod IDs has been extracted and put into Arraylist.
To display the product in favorite item list, used following API to get only favorite product details. For that API, we need to pass above retrieved product IDs are as input data(To retrieve only specific product details instead of all).
In the above API, “product_id” is a string appended with product IDs separated by comma(,) like follows.
“632910392,921728736”
By parsing response JSON data from above URL, we are populating product list manually by iterating product array(Response JSON) it and generating HTML tags with respecve data and appending into DIV to display as grid format.