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 questionin 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.
精彩评论