Price of pizza changes according to toppings.
Toppings are option values.
All toppings same price.
The logic behind the toppings should be:
a = Total amount of removed toppings added together
b = Total amount of extra toppings added together
If b=0 or b=a or a>b the price does NOT change.
if b>a then price=price+(b-a)
Can ZC be coded to do that with the option value prices without re-writing the whole thing?
I know we normally say just about anything can be done with the right skill, but this is proving a bit of a tricky one. I have asked someone who I know to be an expert and their response was no, but I'm just wondering if anyone else can think of a way to achieve this.
Or - thinking aloud - possibly a workaround ignoring the actual value (because they are all the same) and "simply" adding up the numbers of attributes applied and doing the calculation based on that?


. I have asked someone who I know to be an expert and their response was no, but I'm just wondering if anyone else can think of a way to achieve this.

