请注意,这将累加运费: 例如,如果您订购两种产品,产品 A 的运费为 4,产品 B 的运费为 5 最终出货量为9。
If you always use the same shipping price for a given product regardless destination and date you can use the "weight" attribute as the actual shipping price with table rates.
Create a new attribute to display the actual weight of the item on the website
Change the "weight" attribute setting not to display it on the frontend.
Re-import product details with the new weight attribute and the magento "weight" attribute with the shipping price in it.
Create a table for table rates and simply put values in the "Weight (and above)" and "Shipping Price" columns as 0,0; 1,1; 2,2 so on.
Import the CSV file with the shipping rates
Please note this will add up shipping prices: for example if you order two product and the shipping price is 4 for product A and it is 5 for product B the final shiping will be 9.
Magento don’t let you set shipping cost in product level. You can do it by flatrate shipping method Create a attribute shipping_world and add to your default attribute set. overwrite/extend the flatrate carrier model of magento. The value given in shipping_world attribute of product will be the flat shipping rate of that product.
发布评论
评论(3)
如果您始终对给定产品使用相同的运费,无论目的地和日期如何,您可以使用“重量”属性作为实际重量
运费与表费率。
请注意,这将累加运费:
例如,如果您订购两种产品,产品 A 的运费为 4,产品 B 的运费为 5
最终出货量为9。
If you always use the same shipping price for a given product regardless destination and date you can use the "weight" attribute as the actual
shipping price with table rates.
Please note this will add up shipping prices:
for example if you order two product and the shipping price is 4 for product A and it is 5 for product B
the final shiping will be 9.
Magento 不允许您在产品级别设置运费。您可以通过统一运费方式来完成
创建属性 Shipping_world 并将其添加到默认属性集中。
覆盖/扩展 magento 的固定费率运营商模型。
产品的 Shipping_world 属性中给出的值将是该产品的固定运费。
检查一下
Magento don’t let you set shipping cost in product level. You can do it by flatrate shipping method
Create a attribute shipping_world and add to your default attribute set.
overwrite/extend the flatrate carrier model of magento.
The value given in shipping_world attribute of product will be the flat shipping rate of that product.
Check this
普通的 Magento 没有办法。您需要某种运输矩阵扩展。请务必浏览 Connect 了解其他选项。
There isn't a way with plain Magento. You need some sort of shipping matrix extension. Be sure to browse through Connect for other options.