Custom Shipping Charge in Magento - 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.

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

Tax and discount setting in Magento

Magento : 1.6 is My version.
I am facing some tax related setting issue and no configuration looks like working.
Here is the explanation.
Tax on product 20%.
Product cost 25(exclusive tax).
On site all prices are displayed inclusive tax.
Product cost inclusive tax is 30.
If 2 qty is purchased.
Here on cart page.
30 * 2 = 60 subtotal.
Discount 10%(calculated on Total) : 6
Want Tax to be on discounted price but it shows 10 ( should be 9 as calcuate tax after discount is set.)
Total : 54 this is right.
My problem is that on cart and elsewhere Tax is displayed as 10 where as it should be 9.
I want to eliminate this.
Any configuration(didnt find one) or code modification will be ok.
Did you try back-end Tax settings?
Under Sales >Tax > Calculation Settings:
Apply Customer Tax - Before Discount or After Discount
Apply Discount on Prices - Excluding Tax or Including Tax
For My above question I looked into various post.
Also I did go through magento code.
Finally after going through a post by Alan storm I conculded that If one wants to achieve results as per My query then following should be done:
1. Set tax exclusive.
2. overwrite all blocks so that at needed places tax is displayed as inclusive but for magento calculation it is exclusive.This alone will give result as needed.
3. This means overriding lots of blocks with magento.

adding price of the products in range

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.

Resources