开发者

how to set shipping cost per product [closed]

开发者 https://www.devze.com 2023-02-02 05:23 出处:网络
Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this
Closed. This question needs to be more focused. It is not currently accepting answers.

Want to improve this question? Update the question so it focuses on one problem only by editing this post.

开发者_开发百科

Closed 9 years ago.

Improve this question

in magento configuration i have set shipping to be £5. Is there a way to set the shipping price on product level. Obviously there is i just can't find where.


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.

Check this


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消