uShop Shipping Setup


Admittedly, the shipping parameter is one of the more difficult parameters to setup in the uShopOrder applets. However, once you understand the format of the parameter, you will be able to setup almost any type of Shipping Method/Calculation.


Shipping Name

The shipping name can be anything you want to call the shipping method. For example, you can name the shipping method "UPS", "FED EX", or whatever you want to call it.

Calculation Method

The calculation method can be one of four values:
Shipping Table

The shipping table is a list of value=rate pairs separated by commas and can best be described in an example.

Suppose you want to calculate shipping base on the subtotal and the shipping table is specified as:
"10=SEK1.00,20=SEK2.00,30=SEK3.00,SEK4.00"
This table would be interpreted as: for orders with subtotals between SEK0.00 and SEK10.00, shipping is SEK1.00, for orders with subtotals between SEK10.00 and SEK20.00, shipping is SEK2.00, for orders with subtotals between SEK20.00 and SEK30.00, shipping is SEK3.00, and for all subtotals greater than SEK30.00, shipping is SEK4.00.

If you were to use the same shipping table to calculate shipping based on weight, the table would be interpreted as: for orders with weight totaling between 0 and 10, shipping is SEK1.00, for orders with weight totaling between 10 and 20, shipping is SEK2.00, for orders with weight totaling between 20 and 30, shipping is SEK3.00, and for all orders with weight totaling more than 30, shipping is SEK4.00.


PUTTING IT ALL TOGETHER

The shipping parameter is made by putting the Shipping Name, Calculation Method, and Shipping Table together in one comma separated string. As an example:

 <PARAM NAME=shipping      VALUE="UPS,BY_SUBTOTAL,20=SEK5.00,35=SEK7.00,50=SEK10.00,SEK15.00">

This shipping parameter would be interpreted as: Call this shipping method "UPS", Calculate the shipping based on "SUBTOTAL", and for subtotals up to SEK20 charge SEK5.00 shipping, for subtotals up to SEK35 charge SEK7.00 shipping, for subtotals up to SEK50 charge SEK10.00 shipping, and for subtotals greater than SEK50 charge SEK15.00 shipping.



SPECIFYING MULTIPLE SHIPPING OPTIONS

You can specify multiple shipping methods/calculations by just separating each one with a semicolon (;).

<PARAM NAME=shipping     VALUE="UPS,BY_SUBTOTAL,20=SEK5.00,35=SEK7.00,50=SEK10.00,SEK15.00;
                                FED EX,BY_WEIGHT,10=SEK5.00,20=SEK10.00,SEK25.00;
                                US Air Mail,BY_QUANTITY,3=SEK3.00,6=SEK5.00,SEK7.50;
                                Over Night,FLAT_RATE,SEK20.00">


NOTE: DO NOT include a semicolon after the last shipping option.