0

I fairly new to Magento, and I'm trying to make my shipping rate customized. I set my flat rate as disabled, then opted for the table rates option. What I basically want is:

Get the State then Country:

If Victoria(Australia) - $5 shipping cost
if everything else - $10 shipping cost

Then if item's weight is:

 <= 30kg = $5 additional shipping cost (regardless of number of items)
 <= 70kg = $15 additional shipping cost (regardless of number of items)
 >= 71kg = $20 additional cost (regardless of number of items)

However I do not know how to set the following options in the table rates tab. What I initially did was to set the condition to

condition = "Weight vs. Destination"

Include virtual products in Price Calculation = "Yes"

Calculate Handling Fee = "Fixed"

I just realized that I want to add the computations, but I have no idea how. How do I implement my computation for the shipping rates?

I'm using Magento 1.8 by the way.

4

1 回答 1

0

发现了。

在 Magento(1.8) Admin 中,转到 system ->configuration ,然后将当前配置范围设置为主网站,然后转到 shipping method 选项卡。在运输方式选项卡中,选择表格费率,然后将条件设置为“重量与目的地”。然后设置附加选项后设置(取决于您需要什么),按导出按钮下载csv。然后,您可以根据计算运费所需的变量修改 excel 文件。之后只需按导入将表格费率保存到您的配置中。

我花了几天时间,而且我不得不在数据库中做一些修改(如果选择的国家是澳大利亚,我需要有州,所以我必须手动插入它们)

于 2014-02-25T06:08:42.307 回答