lindyslack
Newbie
Joined: 06 Jul 2006
Posts: 4
|
 how I have it setup...
Use Custom Shipping logic = yes
If using Custom Logic, is shipping measured by weight? = no
-----
# In this example Shipping Cost is based on the total order.
# $1-$29.99 is 10%, $30-$59.99 is 7.5%, etc. (TURN OFF UPS!)
# Code does not force exit, so handling charge will be added!
@sc_shipping_logic = ( "|1-99.99|||0.00");
#
$shipping_price = &calculate_shipping($temp_total,
$total_quantity, $total_measured_quantity);
-----
Use the SBW (Ship By Weight for FedEx/UPS/USPS) module? = yes
Allow Shipments via which services: All are set to Yes...
I would also like to disable FedEx and UPS on items under $100... Is this possible?
This seems to work on FedEx and UPS but not on USPS... USPS is where I want it to work... I don't want FedEX or UPS on items under $100...
Any sugestions???
|