and the problem is the shipping isn't calculated at all in final
checkout, no matter what i seem to do...
My shipping settings are (from top down) 3,0,NO, YES, NO, NO...
(also i'm only providing USPS Priority mail shipping).
see this issue at: www.ThePassionArtifacts.com
Also, when i take off 'Test Mode' and "Submit change"
it stays in Test Mode...
PLEASE HELP SO I CAN START SELLING!!!
Code:
# 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-25.00|||39.8%",
"|25.01-50.00|||25.9%",
"|50.01-75.00|||19.93%",
"|75.01-100.00|||18.95%",
"|100.01-130.00|||16.88%",
"|130.01-200.00|||12.48%",
"|200.01-250.00|||13.18%",
"|250.01-|||12.65%",
#
$shipping_price = &calculate_shipping($temp_total,
$total_quantity, $total_measured_quantity);