I use flat rate shipping most of the time. $4.95 plus $1 for each additional item.
most of the time this works wonderfully for me. However some things have changed with a few of my products.
This is my current shipping logic.
$shipping_price = 4.95 + (($total_quantity - 1) * 1);
works great.
however I have a few items that are just enough heavier that they don't quite fit my current logic so I need to adjust it for just those few items.
I know I can pull the shipping cost from the database by using $shipping_price = $shipping total but I can't figure out how to keep it from double up if more then one item is bought and still get the $1 adder per item in there. Any ideas?
I've tried using $shipping_price = $shipping_price + (($total_quantity - 1) * 1); but that doesn't work.
Any ideas?
Thanks in advance.