Results 1 to 3 of 3
  1. #1
    Join Date
    Sep 2006
    Location
    United Kingdom
    Posts
    195
    Plugin Contributions
    0

    Default flat rate shipping - can u set a minimum wieght

    is there any way to set either a minimum weight or price for this
    for example i would like it so this shipping option didnt show up unless the order total was over £32 or if the weight exceeded say 10kg

    is it possible if not is it possible with the table rate module???

  2. #2
    Join Date
    Sep 2006
    Location
    United Kingdom
    Posts
    195
    Plugin Contributions
    0

    Default Re: flat rate shipping - can u set a minimum wieght

    has anyone got a solution to this???

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

    Default Re: flat rate shipping - can u set a minimum wieght

    If you look how a function is used to enable/disable based on free shipping ... you could build your own function that checks the weight and total to further control this ...

    Code:
          // disable only when entire cart is free shipping
          if (zen_get_shipping_enabled($this->code)) {
            $this->enabled = ((MODULE_SHIPPING_FLAT_STATUS == 'True') ? true : false);
          }
    Trace down via the Developer's Tool Kit the function zen_get_shipping_enabled that is located in the Catalog and Admin ...

    The concept here is, if you return a true value then the shipping module displays ... if you return a false value from the function then the shipping module cannot display or vanishes from the checkout_shipping ...
    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!

 

 

Similar Threads

  1. v139d How Can I Set One Item to Use Flat Rate Shipping While The Others Don't?
    By Fretty in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 22 Apr 2014, 04:19 PM
  2. Flat rate shipping with a minimum purchase
    By johnny roastbeef in forum Built-in Shipping and Payment Modules
    Replies: 6
    Last Post: 9 Aug 2011, 06:03 PM
  3. How Can I Set a Flat Rate for shipping on 1 item and rest by weight ?
    By vividbreeze in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 1 Jan 2010, 05:26 AM
  4. How to set up flat rate shipping as delivery
    By Kelli in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 30 Apr 2009, 03:19 PM
  5. One product only be set to Flat Rate shipping?
    By LilleyPadGifts in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 3 Jan 2008, 06:32 AM

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