ok,
decided on
for parcel post
$3.50 for 1st, + $2.00 for each additonal
for Priority
$6.50 for 1st, +$6.50 for each additional
been trying to utilize
http://www.agoraguide.com/faq/viewtopic.php?t=991
I was thinking of something like this
@sc_shipping_logic = ("Parcel|1-||| $A=3.50, $B=2",
"Priority|1-|||$A=4.50, $B=6.50",);
#
$shipping_price = $A + ($total_quantity * $B)
i know the code is wrong since i have nothing to refer to on how to use variables, or is that even possible?