You know that opencart has got special price function. You can create it from admin panel for products. When quantity increased, you can decrease prices from special prices menu in admin panel.
- 1 unit $10,
- 2 unit $9,
- 3 unit $8 ...
When you added to cart this product. It happens like this cart;
- if you added 1 unit product to cart = $10
- if you added 2 unit product to cart = $18
- if you added 3 unit product to cart = $24
I try to change it like this. When i wrote their prices for quantities from special prices menu in admin panel. It must be its price for its quantity. So i try to do this;
- if you added 1 unit product to cart = $10
- if you added 2 unit product to cart = $9
- if you added 3 unit product to cart = $8
More than this would calculate $2.66 for per product.
I created an input radio form for product page. It is dynamic. It takes datas from special prices. Everything is good until this point. But when i added a product to cart. It takes its price for one product.
I tried to change it from controller. I edited quantity x prices string. But when i added more then 3 product. It started to calculate its price as 0. Because I didnt define 4th product from special price menu.
The most important thing is for me, Quantities and their total prices must show on product page. When consumers checked radio buttons on product page. It must show correctly in cart.
I checked, i couldnt find any extension like this. I hope, you understood what i want.
4.5
for two products,2.66
for three of them, etc? This would be much easier than reworking whole process... – shadyyx