# 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-999|||8")
#
$shipping_price = &calculate_shipping($temp_total,
$total_quantity, $total_measured_quantity);
I want to set a flat shipping price of $8 on all order (not products), how would i do so? spent whole day today playing with shipping settings and cant get it to work