Zen Cart Logo
Forums / Built-in Shipping and Payment Modules / Handling Fee Per Pound

Handling Fee Per Pound

Locked

Views: 1,053

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
14 Sep 2009, 6:44 PM
#1
adjinwis avatar

adjinwis

New Zenner

Join Date:
Mar 2008
Posts:
9
Plugin Contributions:
0

Handling Fee Per Pound

I am looking to add a $1 USD handling fee for every lb. We have to send meat with Dry Ice .. which is why we need the handling fee to be per pound ...

Any help would be awesome :)

Thanks ...

15 Sep 2009, 7:58 PM
#2
ajeh avatar

ajeh

Oba-san

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

Re: Handling Fee Per Pound

What shipping module are you using?

21 Sep 2009, 3:31 PM
#3
adjinwis avatar

adjinwis

New Zenner

Join Date:
Mar 2008
Posts:
9
Plugin Contributions:
0

Re: Handling Fee Per Pound

Im using UPS and USPS ...

22 Sep 2009, 2:31 AM
#4
ajeh avatar

ajeh

Oba-san

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

Re: Handling Fee Per Pound

You can customize the handing in UPS ups.php in the code:

        // EOF: UPS USPS
        $methods[] = array('id' => $type,
                           'title' => $this->types[$type],
                           'cost' => ($cost + MODULE_SHIPPING_UPS_HANDLING) * $shipping_num_boxes);

If MODULE_SHIPPING_UPS_HANDLING was set to 1 and you multiply it by $shipping_weight you could get the $1 per pound on the shipping cost ...

It would be similar in USPS as well ...