Hey Community Members,
I have made a calculator functionality on the product page & I want to know how I can take the customization price of the product page to the cart page.
What are the ways through which I can take the customization price of the product page to the cart page?
1 Like
You need to provide more information. But if you can pass the custom price you calculated to your cart, you cand add it as a customer property to that item and use it to be displayed if needed example: add a property to the product form
<input
type="hidden"
name="properties[calculated_price]"
value="{{ your_price_here}}"
>
and use it in the cart with
{{ item.properties["calculated_price"] }}
, if instead you want to make the price dynamically based on that property youll have to create a custom cart transform or use an app.