Zen Cart Logo
Forums / Addon Shipping Modules / USPS v15 Ratev3 2013_0127 Disable for items over 2lbs?

USPS v15 Ratev3 2013_0127 Disable for items over 2lbs?

Views: 1,586

Results 1 to 6 of 6
7 Mar 2013, 12:26 AM
#1
14all41 avatar

14all41

New Zenner

Join Date:
Aug 2011
Location:
Indiana
Posts:
66
Plugin Contributions:
0

USPS v15 Ratev3 2013_0127 Disable for items over 2lbs?

I would like to configure the USPS module to be disabled for items that are more than 2 pounds. I think this requires editing the php file,but I am not sure what needs to change and where.
This is a great module, it installed without a problem.

7 Mar 2013, 12:34 AM
#2
ajeh avatar

ajeh

Oba-san

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

Re: USPS v15 Ratev3 2013_0127 Disable for items over 2lbs?

Do you want ALL USPS to be turned off when the Order is >= 2lbs?

7 Mar 2013, 11:03 PM
#3
14all41 avatar

14all41

New Zenner

Join Date:
Aug 2011
Location:
Indiana
Posts:
66
Plugin Contributions:
0

Re: USPS v15 Ratev3 2013_0127 Disable for items over 2lbs?

My product is supplied by a drop shipper. They do not use USPS for anything over 2 pounds but rather they use UPS. I have both modules installed and would like only UPS available when the total weight is over 2 pounds.

7 Mar 2013, 11:17 PM
#4
ajeh avatar

ajeh

Oba-san

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

Re: USPS v15 Ratev3 2013_0127 Disable for items over 2lbs?

You can customize the code for preventing USPS on Orders of 2lbs or more:
/includes/modules/shipping/usps.php

with the code in RED:

    // disable only when entire cart is free shipping
    if (zen_get_shipping_enabled($this->code)) {
      $this->enabled = ((MODULE_SHIPPING_USPS_STATUS == 'True') ? true : false);
    }

[B]// bof: disable USPS when weight is >= 2
if (!IS_ADMIN_FLAG) {
  if ($_SESSION['cart']->weight >= 2) {
    $this->enabled = false;
  }
}
// eof: disable USPS when weight is >= 2

[/B]    if ($this->enabled) {
11 Mar 2013, 11:01 PM
#5
14all41 avatar

14all41

New Zenner

Join Date:
Aug 2011
Location:
Indiana
Posts:
66
Plugin Contributions:
0

Re: USPS v15 Ratev3 2013_0127 Disable for items over 2lbs?

Thank very much, it worked nicely.

11 Mar 2013, 11:11 PM
#6
ajeh avatar

ajeh

Oba-san

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

Re: USPS v15 Ratev3 2013_0127 Disable for items over 2lbs?

You are most welcome ... thanks for the update that this worked for you ... :smile: