adding price of the products in range - magento

I have set up a shop on magento that works fine but my problem is that I want to be able to charge clients based on wight.For example
if someone chooses 6kg there should be a configured price range saying for 4-7 kg then price per kg is 2 hence total price to be 12usd or if someone enter 110.28 kg then there should be a price range defined which states that if the weight is 100-120 kg then each kg is 1.8 usd hence total price is 110.28*1.8 US
That is what i am looking for if there is a way magento can handle that please help me.

Assuming you are selling your product in 1kg units then you should be able to use tier pricing to create the above pricing structure. Your tier prices would look like:
qty = 4, price is $2
qty = 8, price is $y
...
qty = 100, price is $1.8
If you are selling in partial units (e.g. 110.28 kg) then you will need a customisation to work with per kg pricing. I'd look at commercial extensions, I'm sure there will be some available.

Related

Magento product quantity wise price increase

I want to create only one product in magento whose total price will be $50 more for any quantity less than 100 and $35 more for any quantity more than 100 while being added to cart.I have tried price rules but it seems to be not working.Please help me how do i create it.The product also includes additional parameters like tier pricing
These are the tier prices
You need to create a singled product and add tier pricing for it.
Magento knowledge base shows how to do it: http://www.magentocommerce.com/knowledge-base/entry/how-do-i-use-tier-pricing

Magento table rate shipping method only for price

I am curently using Magento 1.9.1 and i want to set up a table rate for shipping.
In the shipping methods i can see only 3 conditions:
Weight vs. Destination
Price vs Destination
and # of Items vs. Destination
My questions is - How i make it count only the price. They are delivered all from england but there is only change of the shipping price on different purchase price.
For example, for purchases:
for store purchases for or less 25 pounds the Shipping fee is 3 pounds.
for store purchases for 50 pounds the Shipping fee is 5 pounds.
for store purchases for 75 pounds the Shipping fee is 7 pounds.
for store purchases for 100 pounds the Shipping fee is 9 pounds.
for store purchases for 150 pounds the Shipping fee is 12 pounds.
Thanks in advance!
Just do it Price vs Destination and only use table rates as you normally would. If necessary restrict countries that can be shipped to in your configuration.
Use Amasty Table Rate Shipping extension.

Magento Quantity Discount by Percentage

Are there percentage based quantity discounts?
I’m using Magento 1.8 and I want quantity discounts expressed as percentages.
I don’t see that in Magento. I know setting new Tier Prices but I want a Tier Price by a giving percentage.
For example, if someone buys 5 or more of Product X, I want to give them a 5% discount, If s/he buys 10 or more I want to give 10% discount....
I'm using Magento 1.6.2.0- and I can do this by creating a shopping cart rule for each tier of quantities. see this page http://www.magentocommerce.com/knowledge-base/entry/what-are-shopping-cart-price-rules-and-how-do-i-use-them
What I would do is create one rule for a percentage off of 5 or more, then an additional rule for an additional 5 percent off of 10 or more....and keep creating a rule for each tier

Custom Shipping Charge in Magento

I am just wondering with the custom shipping rates in my magento store. My Rules is to make the shipping charges as per below structure:
For the Product Weight:
0 - 1KG : $7(Shipping rate) , 1KG - 3KG : $10, 3KG - 5KG : $15
Now if someone Order for 100KG weight product then the Shipping charges must be $300 (100 / 5 =20, then 20 x $15 = $300) and same for the 102KG then it should be $310. (for 20 x $15 = 300 and reminder is 2KG which falls under the 1-3KG range. So $10 would be added on the $300).
So is there anyway that i can config these on the CSV file or need to do something coding. So please suggest and help me out.
With standard Magento you can do this, but only if you do long hand with table rates carrier, i.e you would need a row for each weight range you wish to change the price, its going to be a pretty big table.
Otherwise extension route or custom coding.

Magento: case/tiered pricing and being able to break out of case and price for individual skus

I am just looking for some ideas, we have a client that wants pricing by case which gets special pricing then if you are buying individually. so lets say the case quantity is 12 and you buy 3 cases, we could easily setup a tiered pricing scenario, if quantity > 12 price is x, if quantity is > 24 price is x, if quantity > 36 price = x. The problem is lets say they wanted to buy 3 cases and 3 individual skus. Magento's tiered pricing will not work with this because everything over 36 will have the same price.
We would of just created a case quantity attribute and put that as a dropdown menu where it would list 12, 24, 36 and when they choose that, it populates the quantity field. Programmatically or out of the box, does anyone think there is a way to say if the user buys 36 the price per unit = x, if the customer buys 39, the price is x for 36 and x for 3?
One option could be to offer your individual SKU as a Simple Product with no tier pricing, then create a Bundle product of 12 SKUs and offer that with your tier pricing. You can force the Bundle Item to be sold in increments of 12
That way you're still selling the same SKU, and the customer can add 3 bundles and 3 individuals = 39 products.
A bit of a pain having two product pages, but is you use the Upsell block with an Qty field and Add to Cart button on the product detail page, that could reduce that hassle for the customers.

Resources