Zen Cart Logo
Forums / Built-in Shipping and Payment Modules / Shipping Discounts? ie: each additional item is only $1 more each?

Shipping Discounts? ie: each additional item is only $1 more each?

Locked

Views: 2,730

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
4 Jan 2009, 2:47 AM
#1
paigesjewelry avatar

paigesjewelry

New Zenner

Join Date:
Jan 2009
Posts:
6
Plugin Contributions:
0

Shipping Discounts? ie: each additional item is only $1 more each?

Hi -

I am currently using the perweightunit shipping module and entering what I want to charge for each item as the weight.

Does anyone know how I can set this up so that, say, each additional item to be shipped is only $1.00 more?

Thanks for your help!

Paige
https://www.paigesjewelry.com

4 Jan 2009, 4:23 PM
#2
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Shipping Discounts? ie: each additional item is only $1 more each?

Per Unit perweightunit shipping module takes the products weight for its calculation ... and takes the total weight of all the products for products_weight * quantity ...

It sounds like you want the charge for shipping to be:
Product A 6.75 quantity 4
Product B 3.25 quantity 3

products_weight + ( (quantity-1) * 1 )

So if the products_weight is 6.75 and you order 4 you would want:
6.75 + ((4-1) *1) =
6.75 + (3 *1) =
$9.75

Then if the products_weight is 3.25 and you order 3 you would want:
3.25 + ((3-1) *1) =
3.25 + (2 *1) =
$5.25

with a total shipping of $15.00 for the order ...

This would take a custom shipping module ... but it could be custom written for this ...