The Downloads Page has three entries (below) about shipping, none of which tells me what settings I need to check :-(
- Shipping_Region_SQL_Insert_fr-FR.txt : A list of French Shipping Regions
- CreatingRegionsForShipping.pdf: A document that shows how to create other shipping cost for regions
-
and the ShipcalcProviderExample.zip containing the following VB code
ShipcalcProviderExample Code
Public Class upsCalcProvider
Inherits CalcShipInterface
Public Overrides Function getCartTotals(ByVal PortalID As Integer, ByVal CartID As String, ByVal objCartTotals As CartTotals, ByVal ShipType As String, ByVal CountryCode As String, ByVal ShipMethodID As Integer) As CartTotals
Dim weight As Decimal = 10.0
objCartTotals.ShipAmt = weight
Return objCartTotals
End Function
End Class