Results 1 to 4 of 4
  1. #1
    Join Date
    Dec 2006
    Posts
    199
    Plugin Contributions
    0

    Default Disable UPS Ground for some states?

    Is there a way to disable UPS Ground to 8 states and only allow them the option of Priority Mail or UPS 3 Day Select? (shipping live plants)

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

    Default Re: Disable UPS Ground for some states?

    To turn off the display of Ground shipping in the UPS shipping module for specific states, you could change the code from:
    Code:
            $cost = preg_replace('/[^0-9.]/', '',  $cost);
            $methods[] = array('id' => $type,
                               'title' => $this->types[$type],
                               'cost' => ($cost * $shipping_num_boxes) + (MODULE_SHIPPING_UPS_HANDLING_METHOD == 'Box' ? MODULE_SHIPPING_UPS_HANDLING * $shipping_num_boxes : MODULE_SHIPPING_UPS_HANDLING) );
          }
    
          $this->quotes['methods'] = $methods;
    to read:
    Code:
            $cost = preg_replace('/[^0-9.]/', '',  $cost);
    
    // bof: Disable Ground for specific states
    //echo 'UPS TYPE ' . $type . '<br>';
            if (in_array(strtoupper($order->delivery['state']), array('OHIO', 'NEW YORK') ) && $type == 'GND') {
              // skip display
            } else {
              $methods[] = array('id' => $type,
                                 'title' => $this->types[$type],
                                 'cost' => ($cost * $shipping_num_boxes) + (MODULE_SHIPPING_UPS_HANDLING_METHOD == 'Box' ? MODULE_SHIPPING_UPS_HANDLING * $shipping_num_boxes : MODULE_SHIPPING_UPS_HANDLING) );
            }
    // eof: Disable Ground for specific states
    
          }
    
          $this->quotes['methods'] = $methods;
    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: v1.5.5]
    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 2006
    Posts
    199
    Plugin Contributions
    0

    Default Re: Disable UPS Ground for some states?

    Thank you very much!

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

    Default Re: Disable UPS Ground for some states?

    You are most welcome ... glad that this is working 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: v1.5.5]
    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. v154 Enable UPS ground shipping only for International, Alaska, Hawaii.
    By Patrick Vincent in forum Built-in Shipping and Payment Modules
    Replies: 12
    Last Post: 10 Dec 2015, 09:56 PM
  2. UPS Module - Free ground but charge for express?
    By pricediscrimination in forum Built-in Shipping and Payment Modules
    Replies: 8
    Last Post: 16 Jan 2013, 05:14 PM
  3. Subtracting UPS Ground cost from other UPS methods
    By sabucat in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 14 May 2009, 05:08 AM
  4. Flat Rate Shipping for some items, normal UPS ground for others.
    By JordanPalatineIL in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 22 Aug 2007, 05:16 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR