Page 1 of 2 12 LastLast
Results 1 to 10 of 14
  1. #1
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

    Default Table Rate shipping PLUS a handling fee for certain items

    HI,
    I am using a table rate based on merchandise total. Ex: up to $40.00 = $4.95 shipping charge.

    I am adding several items that are heavier than all my other items and want to add a fee to cover the extra weight .
    I want this to be based on quantity ordered per item - Ex: $.75 per item.
    3 of this item would add $2.25 to the $4.95 for a total of $7.20 for an order up to $40.00

    I have searched and read dozens of posting but can't find an answer.
    I thought that this might have been something simple to do. Am I wrong?

    Please help.

    Thanks,

    Marvin

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: Table Rate shipping PLUS a handling fee for certain items

    You will probably need to base this on weight instead of price
    Zen-Venom Get Bitten

  3. #3
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

    red flag Re: Table Rate shipping PLUS a handling fee for certain items

    Thanks Kobra for reply.

    If you mean switch my entire store to a weight based calculation I dont want to do that as ONLY about a dozen items are involved out of over 230 items.

    I'm looking for a way to use the price rate table and add a fee to the 12 items based on the number of items.

    I have another store where I us Miva Merchant and they have that option when setting up each item to add a fee per item.

    I hope that that option is being added to Zen 2.0.

    Marvin

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

    Default Re: Table Rate shipping PLUS a handling fee for certain items

    If you are not using your products_weight for anything ... and all of these Products with an added fee are based on number of items ordered * added fee ... then you could add a products_weight to these few products and take the weight computed to be the added fee ...

    So if products_id has a 2.25 added fee per quantity and 3 are ordered it would add 2.25 * 3 to the existing shipping cost already computed in the regular method you are using that is not weight based ...

    Would that work?
    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!

  5. #5
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

    Default Re: Table Rate shipping PLUS a handling fee for certain items

    Ajeh,

    Thanks for your reply. You almost have it unless I am missing something.

    I set it up activating the weight shipping option and putting 1.00 as the cost per unit.

    I put the weight in my product_wgt as .75 (this is what I want to charge extra per item for the heavy items)

    It calculated the shipping charge correctly BUT BUT BUT it shows as a shipping choice for the customer to pick

    So when the customer orders 3 of this item she has a choice of $4.95 (the normal shipping charge) OR $2.25 which is the weight based charge.

    How can I get this to combine as one charge of $7.20???????

    Marvin

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

    Default Re: Table Rate shipping PLUS a handling fee for certain items

    First ... are the calculations correct based on what you have tried, if they were combined?

    IF so, that is half the battle ...

    Next, uninstall the weight based shipping module, I am guessing you are using the Per Unit perweightunit shipping module ...

    Now, you need to customize the shipping module that you are using for everything else ...

    I believe you are using the Table Rate table setup based on Price ...

    What you want to do is now get the total weight of the order and add it to the cost in that shipping module ...

    How crafty are you at doing 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: 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!

  7. #7
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

    Default Re: Table Rate shipping PLUS a handling fee for certain items

    Ayeh,
    Yes, calculate is correct if they are combined.

    Yes i am using the PerUnitn perweight module. I just disabled it

    Yes I am using the Table Rate based on Price.

    Crafty? i have done some modifications with help from my fellow Zenners.

    Can you give me the code?

    Thanks

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

    Default Re: Table Rate shipping PLUS a handling fee for certain items

    See if this does it for you:
    Code:
        $this->quotes = array('id' => $this->code,
        'module' => MODULE_SHIPPING_TABLE_TEXT_TITLE . $show_box_weight,
        'methods' => array(array('id' => $this->code,
        'title' => MODULE_SHIPPING_TABLE_TEXT_WAY,
        'cost' => $shipping + MODULE_SHIPPING_TABLE_HANDLING + $shipping_weight)));
    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!

  9. #9
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

    Default Re: Table Rate shipping PLUS a handling fee for certain items

    Ajeh.
    Thanks for the code.
    I understand what it does & how.

    But what file do I insert this in and where is it located.

    Also, does it matter where in that file it goes???????????

    Thanks,
    Marvin

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

    Default Re: Table Rate shipping PLUS a handling fee for certain items

    If you want to use the Table Rate table ... then I would add that weight, which is the extra charge, to the Table Rate table shipping module in:
    /includes/modules/shipping/table.php

    NOTE: there isn't an override for this so save your changes ...
    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!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. free shipping with table handling fee?
    By hootienchyna in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 13 Oct 2011, 02:38 PM
  2. How to make a flat rate shipping handling fee?
    By Servelan in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 28 May 2011, 02:21 PM
  3. How do I set up a separate handling fee for certain items?
    By flipperry in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 9 Aug 2009, 04:58 PM
  4. Can I set up shipping for a base rate plus reduced cost on additional items?
    By buffalohole in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 6 Feb 2009, 09:40 PM
  5. Handling fee only on certain items
    By Hound in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 16 Jul 2007, 03:04 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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR