can i set a maximum weight for USPS? I have items that i would like to offer USPS under 5lbs but anyting above that for the customer not to have to option of USPS during checkout... thanks
can i set a maximum weight for USPS? I have items that i would like to offer USPS under 5lbs but anyting above that for the customer not to have to option of USPS during checkout... thanks
You are best customizing the USPS shipping module itself to only display when the weight > 5 ...
Edit the file:
/includes/modules/shipping/usps.php
and above this code:
add this code to make it read:PHP Code:$this->types = array('EXPRESS' => 'Express Mail',
'FIRST CLASS' => 'First-Class Mail',
'PRIORITY' => 'Priority Mail',
'PARCEL' => 'Parcel Post',
'MEDIA' => 'Media Mail',
'BPM' => 'Bound Printed Material',
'LIBRARY' => 'Library'
);
PHP Code:global $shipping_weight;
if ($shipping_weight > 5) {
$this->enabled = false;
}
$this->types = array('EXPRESS' => 'Express Mail',
'FIRST CLASS' => 'First-Class Mail',
'PRIORITY' => 'Priority Mail',
'PARCEL' => 'Parcel Post',
'MEDIA' => 'Media Mail',
'BPM' => 'Bound Printed Material',
'LIBRARY' => 'Library'
);
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
NOTE: that code is for anything above 5 lbs will not see the USPS shipping module ...
NOTE: there are no overrides for this file so be sure to save the original and the customized file for future reference ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
sorry for getting back so so late, code didn't seem to work
Does USPS show at any weight?
Or, does it show all of the time?
You did not explain what "doesn't work" means ...![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
it shows up all the time as a shipping option
Have you an URL where we can try this?
What are your settings in the Configuration ... Shipping/Packaging?
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
USPS.php new:
shipping and packaging config:PHP Code:$check->MoveNext();
}
if ($check_flag == false) {
$this->enabled = false;
}
}
global $shipping_weight;
if ($shipping_weight > 5) {
$this->enabled = false;
}
$this->types = array('EXPRESS' => 'Express Mail',
'FIRST CLASS' => 'First-Class Mail',
'PRIORITY' => 'Priority Mail',
'PARCEL' => 'Parcel Post',
'MEDIA' => 'Media Mail',
'BPM' => 'Bound Printed Material',
'LIBRARY' => 'Library'
);
Enter the Maximum Package Weight you will ship 65
Package Tare Small to Medium - added percentage:weight 2:0
Larger packages - added packaging percentage:weight 5:0
Display Number of Boxes and Weight Status 2
Order Free Shipping 0 Weight Status 0
Shipping Estimator Display Settings for Shopping Cart 1
Display Order Comments on Admin Invoice 2
Display Order Comments on Admin Packing Slip 2
thanks for your time!
im sorry long day website petland plus .com
Try using this instead:
Does that work better for you?PHP Code:global $total_weight;
if ($total_weight > 5) {
$this->enabled = false;
}
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!