Hello,
I recently stumbled across this store that was made with Shopify. You select customize on their site, true nutrition, and can choose several options before getting to the final product. Does anyone know how to start this feature?
Thank you!
Goal: replicate a multi-option product configurator on a Shopify store (like True Nutrition), letting shoppers choose several options before adding the final build to cart. A screenshot was referenced, but the core need is a custom flow on the product page.
Proposed implementation:
Clarifications/outstanding:
Hello,
I recently stumbled across this store that was made with Shopify. You select customize on their site, true nutrition, and can choose several options before getting to the final product. Does anyone know how to start this feature?
Thank you!
This can be done by custom code, have to get products on product details page, using javascript have to add or remove product from cart.
Hello! Thank you for letting me know. Where do you think would be a good place to start. Would this require a professional to build, or something I could learn?
Here how you can start,
Create a page which will have design shown in above picture.
Assuming we have 2 block it can be more.
when user choose protein make a collection name with protein
When user click on cold filtration get the list of all the product along with their image in drop-down or popup.
Store the id of product which user select.
Repeat this for every section u had under protein.
Once you have all the id’s of every section enable the proceed or checkout button to click.
Upon clicking on button use cart API to add all the products in cart.
And you are done.
Hope this will help…