Ups sorry please disregard by previous reply (that was the reply for another topic).
Sorry that is actually the expected behavior, if you have an option with a price of x that price will also be multiplied by the quantity. But it looks like you want to add like a global price that is not affected by the quantity?
If so there is only one option (soon there will be another).
First option:
As katn401 said you can’t use the built in quantity field, that field will always multiply the product quantity by the product price and it does this calculation in many areas like when you add a product to the cart or when you update the cart quantity (in the cart page) so it is not feasible to use it (or at least not without adding php code to modify this calculation).
It would be better to use a number field so the user specify the quantity and then add your options as normal with the price configuration that you want. This way the calculations will work as you want. The downside is that the Quantity column in the cart and checkout will show 1 instead of the quantity defined in the product options. But you could also hide this column and show the quantity bellow the product name (just like the plugin does with any option). Something like this:
Product Name Price
Your_product 20
Quantity: 3
Total: 20
Second option:
This option is not available yet but it will be soon, you will be able to configure fees in a similar way that you configure show/hide conditions. These fees are like additional costs that are added when a condition is met. In your case you could use this feature to add a fee (which would be the price of all your options).
Your fee would be shown in another line in your cart and checkout page, something like this:
Product Name Quantity Price
Your_product 3 10
You_additional_fee 1 10
Total: 20
Regards!
-
This reply was modified 2 years, 8 months ago by
EDGARROJAS.