Page 3 of 6 FirstFirst 12345 ... LastLast
Results 21 to 30 of 54
  1. #21
    Join Date
    Oct 2007
    Posts
    19
    Plugin Contributions
    0

    Default Re: Rush/Priority Handling Charge

    Sorry. I'll try to explain it better. I have 3 levels of service, normal-10 day, rush-5 day, and urgent-3 days. The customer chooses which level they want. I need to implement this using radio buttons as I only want them selecting one option with normal-10 day service as default.

    I did manage to get this working to some extent by editing the configuration for this module and adding 3 unique percentage levels. Then I edited the array that creates the check box, changed it to radio buttons and added 2 additional fields in that array for the other 2 buttons. The problem is that regardless of which button is selected, the calculation is based on the final percentage in the array.

  2. #22
    Join Date
    Nov 2006
    Posts
    19
    Plugin Contributions
    1

    Default Re: Rush/Priority Handling Charge

    Ah... what I assumed on my first reply. OK, so you have 3 levels of service, 2 of which need priority handling, and the customer can pick either-or but not both.

    Looks like you are on-track for this by modifying credit_selection()... I got some ideas, but I need to verify if they will work before I will post any code. Back later...

  3. #23
    Join Date
    Oct 2007
    Posts
    19
    Plugin Contributions
    0

    Default Re: Rush/Priority Handling Charge

    Hi mlankeit,

    I got the fees calculating, just had to add a couple if else statement where the calculation is done based on opt_priority_handling.

    Now if I could only format the output so that the title doesn't show up 3 times!

  4. #24

    help question Re: Rush/Priority Handling Charge

    Any chance this will be updated to work with 139h?

    Current Issues:

    1. Coupons deduct from the subtotal AND the priority handling fee
    2. Gift Certificates funds applied to order total won't apply to the priority handling fee. Instead of a zero balance at the end of check out, the balance due is the total of the priority handling fee (plus shipping insurance as the same issue exists with that mod).

    In short, the priority order handling mod and the shipping insurance mod are having problems whenever coupons or gift certificates are used to pay and/or deduct cost from the order total.

    Suggestions?
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

  5. #25
    Join Date
    Nov 2006
    Posts
    19
    Plugin Contributions
    1

    Default Re: Rush/Priority Handling Charge

    Sorry, ScriptJunkie, but I just now got your post (didn't get an email notification like usual and I've been very busy...)

    Anyway, I'll take a look at what's going on & report back.

    Thx.

    -ml

    Quote Originally Posted by ScriptJunkie View Post
    Any chance this will be updated to work with 139h?

    Current Issues:

    1. Coupons deduct from the subtotal AND the priority handling fee
    2. Gift Certificates funds applied to order total won't apply to the priority handling fee. Instead of a zero balance at the end of check out, the balance due is the total of the priority handling fee (plus shipping insurance as the same issue exists with that mod).

    In short, the priority order handling mod and the shipping insurance mod are having problems whenever coupons or gift certificates are used to pay and/or deduct cost from the order total.

    Suggestions?

  6. #26

    Default Re: Rush/Priority Handling Charge

    Quote Originally Posted by mlankeit View Post
    Sorry, ScriptJunkie, but I just now got your post (didn't get an email notification like usual and I've been very busy...)

    Anyway, I'll take a look at what's going on & report back.

    Thx.

    -ml
    No worries. I had some other check out issues as well that got sorted out when I re-did the sort order of all payment methods. I think that may have resolved this issue as well.

    Let me double check it and get back to you later today.
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

  7. #27

    Default Re: Rush/Priority Handling Charge

    Tested, works fine. Was just a order total sort order issue. Once all mods affecting sort order were properly ordered, the mod works fine.
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

  8. #28
    Join Date
    Jan 2011
    Posts
    16
    Plugin Contributions
    0

    Default Re: Rush/Priority Handling Charge

    I seem to be having trouble with this. I presumed that this would work with the Fast and Easy Checkout add-on, because this (Rush/Priority Handling) was based on another mod created by Numinix (same developer).

    Also, on my single page checkout, I get a little update button next to the Priority Handling, which is not present in the standard checkout.

    This would lead me to assume that the two are compatible. However, when I choose to accept the handling charge and click the update button, it refreshes the page and the total remains unchanged, while the checkbox becomes unchecked.

    This works fine in the standard checkout. It is only having problems with the Fast and Easy checkout enabled. Is Priority Handling incompatible with the newest version of fast and easy checkout, or did I perhaps break something?

  9. #29
    Join Date
    Dec 2008
    Location
    Rimini, Italy, Italy
    Posts
    67
    Plugin Contributions
    0

    Default Re: Rush/Priority Handling Charge

    This module has a strange behaviour.
    Once it's installed it can't be disabled or set to "Offer Priority Handling=False".
    I need to control the module to enable it just for some shipping method.

    Even "this->enabled" handling does nothing and option continue to show in payement selection page

  10. #30
    Join Date
    Dec 2008
    Location
    Rimini, Italy, Italy
    Posts
    67
    Plugin Contributions
    0

    Default Re: Rush/Priority Handling Charge

    I've found a solution to the problem of previous post looking at Optional Insurance Module ("father" of this module) support thread.

    Just put this on top of file (take care of changing brt_brt with your shipping method code):


    PHP Code:
    if ($_SESSION['shipping']['id'] != 'brt_brt') {
    class 
    ot_priority_handling
            
    {
                function 
    process() { }
            }

    } else { 
    So that file top changes from:

    PHP Code:
    class ot_priority_handling {
        var 
    $title$output
    to:

    PHP Code:
    if ($_SESSION['shipping']['id'] != 'brt_brt') {
    class 
    ot_priority_handling
            
    {
                function 
    process() { }
            }

    } else {
    class 
    ot_priority_handling {
        var 
    $title$output

    and a single:

    PHP Code:

    before last php closing tag at file bottom

 

 
Page 3 of 6 FirstFirst 12345 ... LastLast

Similar Threads

  1. v151 Priority Handling Search
    By riomaha in forum Managing Customers and Orders
    Replies: 1
    Last Post: 14 Dec 2013, 10:03 AM
  2. Handling Fee for Armed Forces USPS Priority
    By mafiasam in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 7 Dec 2010, 02:13 AM
  3. Handling charge
    By bastroupe in forum General Questions
    Replies: 1
    Last Post: 16 Feb 2010, 11:49 AM
  4. Rush Priority Handling Tax Calculation Issue
    By catteridge in forum Managing Customers and Orders
    Replies: 0
    Last Post: 9 Dec 2009, 09:00 PM
  5. Disable Priority Handling addon Module?
    By stride-r in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 21 Apr 2009, 03:59 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