Results 1 to 5 of 5

Hybrid View

  1. #1
    Join Date
    Aug 2011
    Posts
    121
    Plugin Contributions
    0

    Default Option to upgrade delivery if under certain weight?

    We currently have a flat rate for anything over 1KG of £5.99

    Anything under that, we will dispatch using Royal Mail.

    How can I add the option for anything under 1KG to be upgraded to a courier?

  2. #2
    Join Date
    Aug 2011
    Posts
    121
    Plugin Contributions
    0

    Default Re: Option to upgrade delivery if under certain weight?

    I have tried to edit table.php and added this to line 62:

    Code:
    if ($_SESSION['cart']->TOTAL_WEIGHT < 1) {
    $this->enabled = false;
    }
    But this makes the shipping page blank.

    using it for total_items works fine.

    Any ideas?

  3. #3
    Join Date
    Aug 2011
    Posts
    121
    Plugin Contributions
    0

    Default Re: Option to upgrade delivery if under certain weight?

    bump.

    Still unable to find a solution to this problem.

  4. #4
    Join Date
    Aug 2011
    Posts
    121
    Plugin Contributions
    0

    Default Re: Option to upgrade delivery if under certain weight?

    bump.

    Still unable to find a solution to this problem.

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

    Default Re: Option to upgrade delivery if under certain weight?

    See if using $_SESSION['cart']->weight works for you ...

    You should be able to use the code in RED for 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);
          }
    
          // bof: // disable weight less than 1
          if (!IS_ADMIN_FLAG) {
            if ($_SESSION['cart']->weight < 1) {
              $this->enabled = false;
          }
          // eof: // disable weight less than 1
    
          if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_FLAT_ZONE > 0) ) {
    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. Hide table rate shipping under a certain weight
    By Kcin in forum Built-in Shipping and Payment Modules
    Replies: 10
    Last Post: 20 Jul 2020, 04:45 PM
  2. v151 Offering Free Shipping over a certain amount and under a certain weight
    By jimmie in forum Addon Shipping Modules
    Replies: 0
    Last Post: 17 Aug 2013, 10:58 PM
  3. v138a How to disable "Store pick up" option for products over certain weight?
    By misiu in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 15 Mar 2012, 05:02 PM
  4. Special price each certain amount and delivery time option
    By jarotbudhi in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 17 Feb 2008, 01:05 PM
  5. How to Offer Free SHipping over a Certain $$ AND Under Certain Weight
    By Jeff_Mash in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 31 Aug 2007, 06:00 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