hallo,
I have enabled an option that adds 2,00 euro to the product sell_price.
Now I have to calculate the shipping costs. I do this calculation simply with:
$total += $product->sell_price * $product->qty;
but I've noticed that $product->sell_price is not the total I see into the cart but is the product sell price without the "Default price" increment of the option, so the shipping cost is not well calculated.
how can I know the real price (sell price plus the option value that I've indicated into "Default price" field)?
thanks
nicola

