Results 1 to 10 of 11

Hybrid View

  1. #1
    Join Date
    Dec 2010
    Posts
    56
    Plugin Contributions
    0

    Default Any way to set minimum weight for shipping purposes?

    We have some items that are pretty light weight and inexpensive yet too large to fit in an envelop. We have had occasions where a customer makes a $10 purchase (which yields a $3 profit) and calculates out to $2 for shipping. Say our actual shipping cost is $6; and we have just lost money.

    If we could force the cart to set a minimum shipping weight of 1lb, we could probably minimize the instances were we lose money in this way.

    We cant simply increase the listed weight on these light items, because if they were to buy in any quantity, the costs would quickly get out of hand.

    Can this be done?

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Any way to set minimum weight for shipping purposes

    What shipping modules are you using?
    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!

  3. #3
    Join Date
    Dec 2010
    Posts
    56
    Plugin Contributions
    0

    Default Re: Any way to set minimum weight for shipping purposes

    We are using UPS, USPS & zones, in addition to freeshipper & store pickup.

    Zen cart 1.3.9h

  4. #4
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Any way to set minimum weight for shipping purposes

    You could try editing the shopping_cart.php class file and changing the function show_weight to read:
    Code:
      function show_weight() {
        $this->calculate();
        if ($this->weight < 1) {
          return 1;
        } else {
          return $this->weight;
        }
      }
    and see how this works for you ...
    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!

  5. #5
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Any way to set minimum weight for shipping purposes

    Would adding 1 pound to the tare weight do the same thing across the board?
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  6. #6
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Any way to set minimum weight for shipping purposes

    No, that would add 1lb regardless of the weight ...
    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!

  7. #7
    Join Date
    Dec 2010
    Posts
    56
    Plugin Contributions
    0

    Default Re: Any way to set minimum weight for shipping purposes

    Brilliant. Looks like its the fix I was looking for.
    Thanks!

  8. #8
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Any way to set minimum weight for shipping purposes

    TNX Linda

    I've just learned something new for today
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

 

 

Similar Threads

  1. How to set up shipping table for 10% with a minimum of $3.00?
    By melissamiller8 in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 27 Apr 2012, 05:00 PM
  2. set shipping for canada weight and dimentions?
    By unusualfinds in forum Addon Shipping Modules
    Replies: 16
    Last Post: 4 Feb 2012, 07:25 PM
  3. Any way around Fedex module max weight of 70 lbs?
    By DuckBill in forum Addon Shipping Modules
    Replies: 3
    Last Post: 7 Oct 2008, 02:30 AM
  4. Any way to disable asking for a shipping address ?
    By snarkys in forum Managing Customers and Orders
    Replies: 0
    Last Post: 10 Aug 2006, 10:29 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg