Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21
  1. #11
    Join Date
    Sep 2007
    Posts
    8
    Plugin Contributions
    0

    Default Re: Shipping Weight calculated incorrectly - Not Tare Settings!

    Quote Originally Posted by DrByte View Post
    What version of Zen Cart are you using?
    1.3.7, installed about a month ago.

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

    Default Re: Shipping Weight calculated incorrectly - Not Tare Settings!

    Scratch the caution on Maximum Size Package ... it is USPS that will not quote over 70lb packages ...
    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
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Shipping Weight calculated incorrectly - Not Tare Settings!

    Quote Originally Posted by levbeck View Post
    No, but at least now the top is correct; the bottom is still doing the division thing.
    The division is a result of the split between number of boxes required to accommodate the max-shippable-weight.
    .

    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.

  4. #14
    Join Date
    Sep 2007
    Posts
    8
    Plugin Contributions
    0

    Default Re: Shipping Weight calculated incorrectly - Not Tare Settings!

    How do I deactivate that feature? When it's over a certain weight, I simply want to remove the UPS option during checkout.

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

    Default Re: Shipping Weight calculated incorrectly - Not Tare Settings!

    Update:

    The weights are calculated properly for quotation purposes.
    The display in the estimator section is reflected incorrectly.

    To fix the display problem, edit /includes/modules/shipping_estimator.php
    in v1.3.7, go to line 235, and make the 4 changes shown:
    Code:
    // altered to include Tare adjustment
      // totals info
      $totalsDisplay = '';
      $display_weight = $_SESSION['cart']->show_weight();
      switch (true) {
        case (SHOW_TOTALS_IN_CART == '1'):
        $totalsDisplay = TEXT_TOTAL_ITEMS . $_SESSION['cart']->count_contents() . TEXT_TOTAL_WEIGHT . $display_weight . TEXT_PRODUCT_WEIGHT_UNIT . TEXT_TOTAL_AMOUNT . $currencies->format($_SESSION['cart']->show_total());
        break;
        case (SHOW_TOTALS_IN_CART == '2'):
        $totalsDisplay = TEXT_TOTAL_ITEMS . $_SESSION['cart']->count_contents() . ($display_weight > 0 ? TEXT_TOTAL_WEIGHT . $display_weight . TEXT_PRODUCT_WEIGHT_UNIT : '') . TEXT_TOTAL_AMOUNT . $currencies->format($_SESSION['cart']->show_total());
        break;
        case (SHOW_TOTALS_IN_CART == '3'):
        $totalsDisplay = TEXT_TOTAL_ITEMS . $_SESSION['cart']->count_contents() . TEXT_TOTAL_AMOUNT . $currencies->format($_SESSION['cart']->show_total());
        break;
      }
    .

    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.

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

    Default Re: Shipping Weight calculated incorrectly - Not Tare Settings!

    Quote Originally Posted by levbeck View Post
    When it's over a certain weight, I simply want to remove the UPS option during checkout.
    What is the "certain" weight?
    .

    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.

  7. #17
    Join Date
    Sep 2007
    Posts
    8
    Plugin Contributions
    0

    Default Re: Shipping Weight calculated incorrectly - Not Tare Settings!

    Brilliant! Thank you so much, that is definitely something that I would not have figured out on my own. I appreciate your attention to my issues!

  8. #18
    Join Date
    Oct 2004
    Location
    Southport, UK
    Posts
    4,237
    Plugin Contributions
    20

    Default Re: Shipping Weight calculated incorrectly - Not Tare Settings!

    I have a client who is also having problems with shipping calculation where the figures are higher than they should be according to the UPS site. In reading this thread, I see DrByte asked what version of ZC was being used...

    My client is using 1.3.5 - has there been any change to the UPS/ZC "relationship" that may be cured by updating to 1.3.7.1?

    Thanks.
    Development Manager @ JSWeb Ltd
    Over 15 years with Zencart

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

    Default Re: Shipping Weight calculated incorrectly - Not Tare Settings!

    I would try v1.3.7.1 on a test database and test directory ...

    If I am not mistaken there were several things cleaned up on the shipping modules since v1.3.5, not to mention all of the bugs and security issues fixed since then ...

    I would also recommend going through the all of the Modules for Payment, Shipping and Order Totals and writting down the settings then hitting REMOVE, INSTALL and Reconfigure them again to obtain the newest changes to the code ...
    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!

  10. #20
    Join Date
    Dec 2006
    Posts
    79
    Plugin Contributions
    0

    Default Re: Shipping Weight calculated incorrectly - Not Tare Settings!

    Hi Dr Byte,

    I was having a similar problem with the shipping estimator and your mod fixed it from displaying incorrectly. My only problem now is that is shows 3 boxes which I think is affecting my shipping quote.

    Total Items: 1 Weight: 100gms Amount: $69.95 Dims: 10.00x10.00x1 Boxes: 3

    I dont know where or how it is getting the 3 boxes from???

    Can you help?

    Many many thanks
    Cheers,
    Neil

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Replies: 6
    Last Post: 20 Oct 2011, 03:33 AM
  2. Per Weight Shipping not Calculated when Tax is Calculated
    By CascianoLtd in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 28 Sep 2009, 04:29 AM
  3. Shipping incorrectly calculating using weight not Shipping table
    By Tihumatech in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 13 Dec 2008, 05:21 AM
  4. Tare weight settings
    By xscd in forum Built-in Shipping and Payment Modules
    Replies: 15
    Last Post: 7 Aug 2008, 01:16 PM
  5. shipping cost calculated by total weight not weight of individual postage cost - help
    By vandiermen in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 31 Jul 2007, 05:51 AM

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