Page 6 of 11 FirstFirst ... 45678 ... LastLast
Results 51 to 60 of 103
  1. #51
    Join Date
    Mar 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Shipping tax not added in order confirmation - possible bug??

    Not sure how it all works but I just realized as I am using 4 Table Rate shipping modules I have four clones of includes/modules/shipping/table.php But my table2.php, table3.php and table4.php are not version 1.5.5. Old versions.

    Of course right now when I am testing I am just using the first one table.php. Not the other three.

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

    Default Re: Shipping tax not added in order confirmation - possible bug??

    No, I can reproduce the problem ... now the goal is we are looking how to correct the problem ...

    I was having issues with reproducing the problem as I did not have the Zone set on the shipping module and just had set the Tax Class ...
    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. #53
    Join Date
    Mar 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Shipping tax not added in order confirmation - possible bug??

    Just checking back in to see if you have been able to recreate the issue(bug) on your side so you can hopefully soon patch the bug.

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

    Default Re: Shipping tax not added in order confirmation - possible bug??

    Have recreated it and it happens when a Zone is set on the shipping module ... without the Zone set it works ...

    We are still working on a solution for this ...
    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. #55
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: Shipping tax not added in order confirmation - possible bug??

    Quote Originally Posted by Ajeh View Post
    Have recreated it and it happens when a Zone is set on the shipping module ... without the Zone set it works ...

    We are still working on a solution for this ...
    So it wasn't just a botched up FTP upload on my end after all ??

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

    Default Re: Shipping tax not added in order confirmation - possible bug??

    My guess is you had a Zone set then did not when you reinstalled ...

    It is possible that there was another issue, but so far I am not finding any other trigger for this. I thought your reinstall was the fix also, as the same thing happened for me. But then I realized that I had the Zone set when it was broken and on the new install I did not have the Zone set.

    So it was just a dilussion on my testing, making me think a new install fixed it, until I really tested it a lot further for the real issue ...
    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. #57
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: Shipping tax not added in order confirmation - possible bug??

    Quote Originally Posted by Ajeh View Post
    My guess is you had a Zone set then did not when you reinstalled ...

    It is possible that there was another issue, but so far I am not finding any other trigger for this. I thought your reinstall was the fix also, as the same thing happened for me. But then I realized that I had the Zone set when it was broken and on the new install I did not have the Zone set.

    So it was just a dilussion on my testing, making me think a new install fixed it, until I really tested it a lot further for the real issue ...

    Thanks for the update Ajeh. If I hate any error, bug, fault, whatever then it is one of an intermittent, inconsistent nature, just like one in the electrics in a car......

  8. #58
    Join Date
    Mar 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Shipping tax not added in order confirmation - possible bug??

    Is there anything I can do to help? I do have the website in a sandbox so can test things out if you like.

  9. #59
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Shipping tax not added in order confirmation - possible bug??

    As an EXPERIMENT (no guarantees here with this idea), you could try the following...

    /includes/modules/checkout_process.php
    Around line 51 you'll see this section of code:
    Code:
    // load the selected shipping module
    require(DIR_WS_CLASSES . 'shipping.php');
    $shipping_modules = new shipping($_SESSION['shipping']);
    
    require(DIR_WS_CLASSES . 'order.php');
    $order = new order;
    Try moving the shipping-module part down a few lines, like this:
    Code:
    // load the selected shipping module
    require(DIR_WS_CLASSES . 'shipping.php');
    
    require(DIR_WS_CLASSES . 'order.php');
    $order = new order;
    
    $shipping_modules = new shipping($_SESSION['shipping']);
    
    Note: ZC v155b includes this fix:
    https://github.com/zencart/zencart/pull/1034
    Last edited by DrByte; 15 Jul 2016 at 03:57 AM. Reason: Note: ZC v155b will include this fix
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  10. #60
    Join Date
    Mar 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Shipping tax not added in order confirmation - possible bug??

    I have moved the line down and it seem to have worked. Taxes on Shipping are now showing up as they did before I upgraded to 1.5.5a. So this very small change looks to have fixed the issue.

    So what are the side-effects of this change?

 

 
Page 6 of 11 FirstFirst ... 45678 ... LastLast

Similar Threads

  1. Can not get tax to be added to order total
    By harleyhar in forum General Questions
    Replies: 1
    Last Post: 28 Jul 2011, 12:10 AM
  2. Tax not being added to shipping
    By hamid84 in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 4
    Last Post: 13 Nov 2010, 11:22 PM
  3. Sales tax not being added to order
    By danilyn22 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 29 Oct 2009, 07:12 PM
  4. bug in Canada Post shipping module? - no tax added
    By ptalindstrom in forum Addon Shipping Modules
    Replies: 4
    Last Post: 14 Jan 2008, 10:31 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