an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Development > General Programming > Item-based Shipping Rates
Last Post 11/19/2008 5:03:00 PM By lukezy. 1 replies.
11/19/2008 4:15:56 PM
gersh
Posts: 5
Joined: 11/19/2008
Item-based Shipping Rates
Is there an easy way to create a custom shipping rate for individual items? I just want a flat fee shipping rate, which is item dependent. Also, where does the shipping rate get stored for individual items. I can't find it in the database.
11/19/2008 5:03:00 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Item-based Shipping Rates
If you want to tie the shipping fee to the item which I guess you mean product, you can adjust the product price to include the shipping free.
 
If you perfer to show the shipping free separately to the customers, you could extend the product table to store the per item shipping fee and then create a new shipping provider to calculate the total order shipping fee from the data that are stored in product table.
 
Hope this help.
DotShoppingCart Staff