Hi there,
I am using latest version of Magento.
Now, I want to do this:
One item cost 10 €.
I will "offer" a quantity list, how this:
1 = 10 €
5 = 50 €
10 = 100 € and so on.
I do knot want that customer put quantity self.
How to realize it?
Regards,
Yes possible to set price based on QTY, use features of Tier Price and check whether meets with your needs. You can set Tier price from "Price" tab.
Hi there,
thanks for your answer.
But it does not fix my problem.
I do not want that customer can put a number of items..
I will only show a dropdown list (100 piece, 200 piece and so on)
How can I offer this?
Im sure there are a lot of extensions for this, but to quickly hack it, you can try replace qty input in catalog/produdct/view/addtocart.phtml with something like this
<select name="qty" id="qty"> <?php $_tierPrices = $this->getTierPrices();?> <?php foreach($_tierPrices as $_tierPrice):?> <option value="<?php echo $_tierPrice['pirce_qty'];?>"><?php echo $_tierPrice['pirce_qty'];?></option> <?php endforeach;?> </select>
and remember customers can still modify qty to anything in cart page, so keep hacking or find an extension
Hi there,
thanks for your message.
1) Where to find "catalog/produdct/view/addtocart.phtml"
2) Can you post a few extension links for this setting?
Regards,
yes
1, app/design/frontend/{your current package}/{your current theme}, and package/theme falls back to base/default
2, http://www.magentocommerce.com/magento-connect/quantity-options-fixed-prices.html