Page 2 of 2 FirstFirst 12
Results 11 to 16 of 16
  1. #11
    Join Date
    Feb 2007
    Posts
    16
    Plugin Contributions
    0

    Default Re: Zone Shipping Cost based on Individual item weight, not total order weight

    Hi Linda, be happy to explain (better hopefully) what I mean.



    Using the "weight" field I have put in "codes" that correspond to all of my possible products. My logic was/is numerals left of the decimal point are major categories of products and numerals right of the decimal are specific products within that category. In hindsight I should have used more significant digits right of the decimal point, and if I can get my shipping working the way I wish I will do that; for example instead of +3.01 I will input +3.00001, representing product #1 in category 3. The more-digit version seems to be the largest number of digits right of the decimal point the field will accept.
    Using this "code" (e.g. +3.01) I put that into the "zone rates" zone Shipping Tables with different shipping charges for each zone as I wish:
    ZONE 1: 1.01:2.95,1.02:14.95,2.01:10.00,2.02:12.00,3.01:5.95,3.02:,,,
    ZONE 2: 1.01:4.00,1.02:20.00,2.01:16.00,2.02:18.00,3.01:12.50,3.02:,,,
    Therefore, I guess my goal is to get the zones shipping module to not do any math function with my "codes", but add all the shipping charges for the corresponding products/zones that are in the cart when there is more than one product in the cart. My system worked perfectly until about 2 weeks ago. I received my first multi-product (photographs) order, and it came through with zero shipping charges, so I basically broke even on the order. Since then I've been trying to figure a way to have all my shipping variations (which are numerous because of the sizes I ship to various countries) be totaled up.
    I drop-ship alot of my items, so I am already dealing with a marked-up (inflated) shipping charge, so I myself don't markup/roundup or "guesstimate" my shipping charges to make my life easy, I just simply want to automatically pass along my vendor's shipping charges. Make sense?
    Cheers & all the best,
    Kevin
    Last edited by klog; 11 Sep 2009 at 07:45 AM. Reason: corrected

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

    Default Re: Zone Shipping Cost based on Individual item weight, not total order weight

    The problem is that weight is treated as a total and not as individual components ...

    You would have to customize a shipping module that manages the weight in a totally different manner to treat the weight per product as separate charges ...

    The Per Unit perweightunit takes the Total weight and multiples that out by the Rate ... again this is a Total Weight and not looking specifically at each Product and its individual weight for a calculation ...

    I believe in the Add Ons or Contributed Forum there are programs that can be setup for individual shipping costs per item in a more detailed manner but I have not used them ...
    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!]
    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
    Feb 2007
    Posts
    16
    Plugin Contributions
    0

    Default Re: Zone Shipping Cost based on Individual item weight, not total order weight

    Hi Linda,

    Any idea how to go about customizing the shipping module?
    What page(s)?
    Cheers,
    Kevin

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

    Default Re: Zone Shipping Cost based on Individual item weight, not total order weight

    I would have to write the whole shipping module from scratch to get a shipping module to work based on a per product per weight per zone ...

    Currently, this is not built into Zen Cart for this method ...

    It would be a lot easier if your weights were proportional per zone ...

    That way, you could enter 1 weight per product then each Zone would use its own Rate against the weight, for example:
    US 1.00
    Canada 1.25
    UK 1.75
    Rest of the World 2.00

    That would allow the total weight of the order to be multiplied by these Rates to calculate the shipping ...
    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!]
    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
    Feb 2007
    Posts
    16
    Plugin Contributions
    0

    Default Re: Zone Shipping Cost based on Individual item weight, not total order weight

    Quote Originally Posted by Ajeh View Post
    I would have to write the whole shipping module from scratch to get a shipping module to work based on a per product per weight per zone ...

    Currently, this is not built into Zen Cart for this method ...

    It would be a lot easier if your weights were proportional per zone ...

    That way, you could enter 1 weight per product then each Zone would use its own Rate against the weight, for example:
    US 1.00
    Canada 1.25
    UK 1.75
    Rest of the World 2.00

    That would allow the total weight of the order to be multiplied by these Rates to calculate the shipping ...
    Hi Linda,
    Well, I certainly wouldn't expect you to rewrite the program. I was actually thinking of giving it a go myself. I'm no expert, but I used to be smart (did a wee bit of programming in the old days, but now I am just a photographer).

    That said, I THINK a shopping cart that could accurately, and I stress accurately, put forth the actual charges for shipping based on item AND zone would be a valuable addition to ZenCart.
    One of these days, when I have time/energy, perhaps I will give it a go myslef.
    Thanks for all your input & help!
    Cheers,
    Kevin

  6. #16
    Join Date
    Feb 2007
    Posts
    16
    Plugin Contributions
    0

    Default Re: Zone Shipping Cost based on Individual item weight, not total order weight

    Update: I did come up with a "better than nothing" solution. It occured to me that the problem (shipping price is zero) only occurs when there is more than one item in the cart, and that the cart informs the buyer that "Shipping rate cannot be determined". SO I located where that phrase is defined (includes/languages/modules/shipping/zones.php) and modified that:
    define('MODULE_SHIPPING_ZONES_UNDEFINED_RATE', '<font color="#FF0000">MY ERROR: Shipping rate cannot be determined.<br><a href="http://kevinlogan.com/gallery2/purchase/shipping_problem.htm" target="_self">Please <strong><font color="#FF0000">CLICK HERE</strong></font> for important info to determine shipping charge</a></font>');
    going to a page (http://kevinlogan.com/gallery2/purch...ng_problem.htm) that explains the issue, and provides info as to the shipping charges. At least this provides an obvious disclaimer, so I feel I'm covered. Not ideal, but good enough for now until I get to figuring out the cart program.
    Cheers & all the best,
    Kevin

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. v150 Zone Rates - calculate shipping by total weight not per product
    By mattys in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 30 Jul 2012, 02:52 PM
  2. Different shipping per item (not based on weight)
    By stevelucky in forum General Questions
    Replies: 4
    Last Post: 29 Aug 2010, 04:40 PM
  3. Shipping multiple items based on total weight, but need weight per box.
    By Nineve in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 2 Aug 2010, 07:42 AM
  4. MZMT not showing weight based shipping total
    By mrmigraine in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 18 Mar 2008, 09:02 AM
  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

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