Results 1 to 8 of 8
  1. #1
    Join Date
    Feb 2010
    Posts
    159
    Plugin Contributions
    0

    Default Using Fedex Freight and UPS?

    I ship most of my products by UPS, but have a hand full of heavy items that need to ship by Fedex freight. Is this possible to setup?
    also I would think that if both freight and non-freight items are in the cart the heavy item would ship fedex while the others ship UPS.
    Any help is greatly appreciated. Thank you

  2. #2
    Join Date
    Feb 2010
    Posts
    159
    Plugin Contributions
    0

    Default Re: Using Fedex Freight and UPS

    if it makes any difference all the freight items are in one category, no UPS item are in the category and no freight item are in categories with UPS items. Sorry to post again thought this info. might help.

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

    Default Re: Using Fedex Freight and UPS?

    At this time, there is only the choice of one shipping method per order ...

    If you had a mixed order, and could test if the order contains 1 or more Products for FedEx ... can the whole order go FedEx?
    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!

  4. #4
    Join Date
    Feb 2010
    Posts
    159
    Plugin Contributions
    0

    Default Re: Using Fedex Freight and UPS?

    Ajeh,

    Thank you for helping. If a freight item is in the a mixed cart I could ship all items by freight, if this would make it easier.
    Thanks again

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

    Default Re: Using Fedex Freight and UPS?

    You could test the contents of the cart, for example to turn on FedEx when 1 or more from categories_id 27 is in the cart:
    Code:
    // global cart if not already done in the function of the shipping module
    global $cart;
    $chk_freight = $_SESSION['cart']->in_cart_check('master_categories_id','27')
    
    if ($chk_freight >= 1) {
      $this->enabled = true;
    } else {
      $this->enabled = false;
    }
    where 27 is the Freight only category ...

    Then, based on the results you can control whether the FedEx and UPS are enabled or disabled by controlling the $this->enabled in the modules ...
    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!

  6. #6
    Join Date
    Feb 2010
    Posts
    159
    Plugin Contributions
    0

    Default Re: Using Fedex Freight and UPS?

    Where would I try that code? is Fedex XLM the module I should try?
    I assume that I would want to add code to the UPS file that would turn UPS off if category 27 is present in cart, right?
    Thanks for your help

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

    Default Re: Using Fedex Freight and UPS?

    In the UPS shipping module:
    /includes/modules/shipping.php

    You would add the code, reversing the settings, below the code:
    Code:
        // disable only when entire cart is free shipping
        if (zen_get_shipping_enabled($this->code)) {
          $this->enabled = ((MODULE_SHIPPING_UPS_STATUS == 'True') ? true : false);
        }
    In the FedEx shipping module there will be a similar line for the:
    $this->enabled = ...

    And you would add the code below that ...
    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!

  8. #8
    Join Date
    Feb 2010
    Posts
    159
    Plugin Contributions
    0

    Default Re: Using Fedex Freight and UPS?

    thank you for your help. I will work with it to see what I can come up with.

 

 

Similar Threads

  1. v151 UPS Shipping module - Tweak to show UPS Freight LTL
    By pexter in forum Addon Shipping Modules
    Replies: 0
    Last Post: 13 Jun 2013, 09:37 PM
  2. UPS Heavy Freight Module UPS Freight over 150 lbs.
    By Relentless in forum Built-in Shipping and Payment Modules
    Replies: 15
    Last Post: 13 Jan 2011, 12:10 AM
  3. Way to choose Freight or UPS/FedEx
    By calvinmcdaniel in forum Setting Up Categories, Products, Attributes
    Replies: 0
    Last Post: 3 Mar 2010, 02:09 AM
  4. Still looking for a FedEx & UPS Freight Solution
    By Stuff4Toys in forum Addon Shipping Modules
    Replies: 14
    Last Post: 20 Oct 2009, 05:15 PM
  5. UPS/USPS and Freight Carrier Issue
    By Tim M in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 21 Feb 2009, 04:25 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