Product Price By Size

Hello everyone,

is it possible to implement a dynamically calculate product price based on dimensions submitted by the customer?
For example to sell custom canvas printing

WxH = x m² = x price

Hi @PMedusa,

Not out of the box. SimpleCart requires each item in the cart to be a SimpleCart Product Resource, so what you could do is write a snippet that takes in the user input and then dynamically creates a new resource with that information. That resource could then be added to the cart, and things should work from there.

Hi Mark,
thanks for the tip