I don't think I explained this very well. I'm not using the plugin, I don't have any values configured there. I am only using manual shipping configuration. Here is how I have it configured now:
I have another shipping method configured for 1 item that only charges $3.99 shipping. I want to charge $3.99 for the first item, then $2.00 for each additional item in the cart. Here is how it is working now -
1 item - $3.99
2 item - $7.99 (3.99 + 2x 2.00)
3 item - $9.99 (3.99 + 3x 2.00)
Here is how I want it to work
1 item - $3.99
2 item - $5.99 (3.99 + 1x 2.00)
3 item - $7.99 (3.99 + 2x 2.00)
I definitely DO NOT want to add shipping prices to the items themselves. So basically this is the formula:
Shipping - $3.99 + ((items in cart -1) x 2.00)
Does that makes sense and can it be done?