Results 1 to 4 of 4
  1. #1
    Join Date
    Aug 2008
    Posts
    3
    Plugin Contributions
    0

    Default Special shipping option for single product

    I have a client who wants to be able to single out certain items to calculate the shipping cost via USPS.

    The rest, he uses UPS.

    Can anyone tell me how I would be able to do that?

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    64,720
    Plugin Contributions
    6

    Default Re: Special shipping option for single product

    What happens when both UPS and USPS products are in the same order?
    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.1]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...

  3. #3
    Join Date
    Feb 2009
    Posts
    1
    Plugin Contributions
    0

    Default Re: Special shipping option for single product

    I'm having this problem as well. I have one single accessory product that weighs much less than a pound and would prefer to just add a flat rate for shipping and handling and hand-deliver it to USPS each day. Shipping the product USPS is on average $1.70. I use UPS for my other products, and want to keep it that way. But, through UPS ground, the low weight product is calculating at $11.47 for shipping. The product shipping is more expensive than the product. Many of my customers need this accessory and need to have access to order it online, but will not pay for this product due to the UPS shipping fee.

    Help!!

  4. #4
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    64,720
    Plugin Contributions
    6

    Default Re: Special shipping option for single product

    See if this would help to customize the shipping UPS module:
    Code:
    // add extra charge for products_id 27 for $1.70 per quantity
            $usps_extra_charge = $_SESSION['cart']->get_quantity(27) * 1.70;
            
            $methods[] = array('id' => $type,
                               'title' => $this->types[$type],
                               'cost' => ($cost + MODULE_SHIPPING_UPS_HANDLING) * $shipping_num_boxes + $usps_extra_charge);
    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.1]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...

 

 

Similar Threads

  1. Show Only Single Royal Mail Shipping Option
    By derrick in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 3 Apr 2008, 09:22 AM
  2. Shipping cost assigned to single product
    By hedera in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 3 Mar 2008, 09:46 PM
  3. Shipping product(s) to multiple addresses on a single order
    By dotman in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 20 Nov 2007, 02:03 PM
  4. Special characters dislapys wrong on a single page...
    By Joakim in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 19 May 2007, 08:44 AM
  5. Single product option problem
    By wdbike in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 30 Sep 2006, 06:35 PM

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
  •