Page 2 of 6 FirstFirst 1234 ... LastLast
Results 11 to 20 of 52
  1. #11
    Join Date
    Sep 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: Handling Fee as Percentage?

    I don't have a dedicated mod for the handling- I was referring to the order total- under "modules" for zencart

    Admin-

    modules-

    order total-

    handling fee-


    but I still can't make it a percentage--
    thanks

    John

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

    Default Re: Handling Fee as Percentage?

    Where in the Modules ... Order Totals ... are you seeing a Handling Fee?

    The Handling Fees are in the Modules ... Shipping ... on each of the Shipping modules ... but you have me a bit lost here ...

    Granted, I am only on my first cup of coffee and could be missing something ... but whatchu talk'n about willis?
    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. #13
    Join Date
    Sep 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: Handling Fee as Percentage?

    Does this help?

    John
    Attached Images Attached Images  

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

    Default Re: Handling Fee as Percentage?

    I see you are using some sort of Add On for your Handling Fee and not the Handling Fee on the individual Shipping modules ...

    Do you know what add on you are using?
    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. #15
    Join Date
    Mar 2011
    Posts
    4
    Plugin Contributions
    0

    Default Re: Handling Fee as Percentage?

    Hey everyone sorry if I'm reviving this old thread but it covers the basis of my question. I'm rocking v 1.3.9h and im looking to do the % based handling fee for usps. I tried changing the code to what was suggested but to no avail.

    So would there be any type of other fixes you guys would know of. By chance try and reply as soon as you can, as this is one of the last steps I have left to setting up the site. Thanks for you time and answers in advance.

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

    Default Re: Handling Fee as Percentage?

    What did you enter for the Handling Fee on USPS ...

    What did you change the code to on the USPS shipping module?
    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. #17
    Join Date
    Mar 2011
    Posts
    4
    Plugin Contributions
    0

    Default Re: Handling Fee as Percentage?

    Well I figured it out

    The finished result was two fold. For our Free Shipping we added a 3% charge for PayPal transactions and $2.75 handling charge to cover shipping overhead. For our USPS module (priority, express, international shipping and PayPal charges we added a 5% charge plus $1.70.

    No need to have an additional "Handling Fee" on the Shipping Module, this formula by-passes that.

    USPS Shipping:
    /public_html/includes/modules/shipping/usps.php

    insert " +($order->info['subtotal'] * .05 + 1.70) into Line 298
    where ($order->info['subtotal'] is your subtotal price * percent + overhead shipping cost.


    Orginal:
    'cost' => ($cost * $shipping_num_boxes) + (MODULE_SHIPPING_USPS_HANDLING_METHOD == 'Box' ? MODULE_SHIPPING_USPS_HANDLING * $shipping_num_boxes : MODULE_SHIPPING_USPS_HANDLING) );

    Updated:
    'cost' => ($cost * $shipping_num_boxes) + ($order->info['subtotal'] * .05 + 1.70) + (MODULE_SHIPPING_USPS_HANDLING_METHOD == 'Box' ? MODULE_SHIPPING_USPS_HANDLING * $shipping_num_boxes : MODULE_SHIPPING_USPS_HANDLING) );

    Free Shipping:
    /public_html/includes/modules/shipping/freeoptions.php

    insert "($order->info['subtotal'] * .03 + 2.75) +"
    where ($order->info['subtotal'] is your subtotal price * percent + overhead shipping cost.


    Orginal:
    'cost' => MODULE_SHIPPING_FREEOPTIONS_COST + MODULE_SHIPPING_FREEOPTIONS_HANDLING)));

    Updated:
    'cost' => MODULE_SHIPPING_FREEOPTIONS_COST + ($order->info['subtotal'] * .03 + 2.75) + MODULE_SHIPPING_FREEOPTIONS_HANDLING)));

    Hope this helps anyone else out there.

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

    Default Re: Handling Fee as Percentage?

    Thanks for the update that you have this working now and how you did it ...
    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. #19
    Join Date
    Aug 2010
    Posts
    22
    Plugin Contributions
    0

    Default Re: Handling Fee as Percentage?

    Hey, I'm looking and I don't see any handling fee under this module. Is this an add on?

  10. #20
    Join Date
    Aug 2010
    Posts
    22
    Plugin Contributions
    0

    Default Re: Handling Fee as Percentage?

    Quote Originally Posted by Unknowing View Post
    Does this help?

    John
    Hello, I look under this module and I don't see any handling fee. Is this an add on?

 

 
Page 2 of 6 FirstFirst 1234 ... LastLast

Similar Threads

  1. v138a Handling fee
    By WavMixer in forum General Questions
    Replies: 4
    Last Post: 10 Mar 2013, 08:10 PM
  2. Needing an additional percentage handling fee
    By BxC in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 4 Nov 2009, 08:46 PM
  3. Adding Percentage Handling fee UPS
    By halestorm in forum Built-in Shipping and Payment Modules
    Replies: 7
    Last Post: 4 Nov 2009, 07:28 PM
  4. percentage (%) based handling charge
    By polarbear in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 29 Jun 2008, 04:14 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