Results 1 to 8 of 8
  1. #1
    Join Date
    Mar 2011
    Posts
    6
    Plugin Contributions
    0

    Default Need a complex shipping module.

    So, I have a client, with a store and he needs a complex shipping module, basically he needs the following criteria for shipping and this is on a per product basis.
    if a product is more than $199 but less than 70lbs it's free, and if a product is over $1200 and more than 70lbs it's free, all other products have UPS rate shipping applied. And if it's going to Alaska or Hawaii then there is no free shipping.

    So if someone adds 2 products to their cart, and
    Product A = $250 and 50lbs (FREE)
    Product B = $100 and 50LBS (Shipping)

    You would only have shipping costs assigned to the 2nd (Product B) when they check out.

    Can anyone please help me? I can't find a module that's similar to this anywhere.

  2. #2

    Default Re: Need a complex shipping module.

    Use CEON Advanced Shipper module. It has the level of flexibility that you need. It's a paid module, but well worth it if you have various shipping calculations. You can set your shipping rates by regions, product, categories, weight, price, and number of items in any of these combinations.
    http://dev.ceon.net/web/zen-cart/advanced-shipper

  3. #3
    Join Date
    Dec 2010
    Location
    UK
    Posts
    1,771
    Plugin Contributions
    3

    Default Re: Need a complex shipping module.

    I second that Cobraplant, I use that mod too, it's well worth the small price for such flexibility.

  4. #4
    Join Date
    Mar 2011
    Posts
    6
    Plugin Contributions
    0

    Default Re: Need a complex shipping module.

    Here's my problem tho, all of the product is pulled in dynamically through an ftp and he has a ton of product, can you settup group type things with the CEON module so it knows to calculate certain weight and amount of products? I can't find anything like this, it seems like you have to select each product one at a time.

  5. #5

    Default Re: Need a complex shipping module.

    Yes, you can set up your shipping calculations (weight, number of items, total sale price) by categories, subcategories and specific products. I have several shipping calculations. I sell DVDs which I ship via First Class Mail. If someone purchases just DVDs, the shipping module calculates a flat rate shipping for First Class Mail. If they order something else along with DVDs, the shipping is based on weight and sent Priority Mail. I also have a specific product that is sent only by Parcel Post. You can always visit the CEON website and ask Conor if his module will fit your needs. If anything, he may even assist you in modifying it to make it fit your needs Frankly, this module is the closest to doing what you want done.

  6. #6
    Join Date
    Mar 2011
    Posts
    6
    Plugin Contributions
    0

    Default Re: Need a complex shipping module.

    Cool thanks, yeah I'll check with him and read a lot more documentation and I think I'm close, so I added a method for it doing the below, which does this in all regions except Alaska and Hawaii, and checks that the price is over $199 and the weight is under 70lbs, which works and gives free shipping, but does this for the overall order, I need it on a per product basis, anyone know how to do this? I've tried putting this whole thing inside <numitems>*:</numitems> as well, but doesn't work. Ideas?

    Code:
    Countries/Postcodes: 	
    
    US:!AKHI, US
    Table of Rates: 	
    
    <price>199-*: <weight>0-70: 0.00</weight></price>

  7. #7
    Join Date
    Mar 2011
    Posts
    6
    Plugin Contributions
    0

    Default Re: Need a complex shipping module.

    Ok, I have this WAY closer, just need help on my module. So I need the following
    Code:
    <price>*-198.99:<weight>*:ups</weight></price>, <price>199-*:<weight>0-70:0.00</weight></price>
    but it doesn't seem like I can do a "," between the prices. Or maybe it's that I can't put the UPS in this format? I know it's sooo close, and by trying different things, these each do what I want by themselves, but I need to combine them. I've also tried.
    Code:
    <price>199-*:<weight>0-70:0.00</weight>, *-198.99:<weight>*:ups</weight></price>
    But that doesn't work either. Ideas?

  8. #8

    Default Re: Need a complex shipping module.

    Go to this page of the configuration documentation:
    ceon_advanced_shipper_5.0.0_for_zc/_docs/sections/configuration-region-rates.html#tables-of-rates

    Here you'll find an example of using a comma between <totalorderprice> and </totalorderprice>, so you should be able to do the same with <price></price>.
    Code:
    <totalorderprice>0-250:<weight>*:125%</weight>, 250-*:0</totalorderprice>
    I'm also not sure about the code for US:!AKHI, US. In the documentation, he shows an example for excluding one region in a zone, but not two. I'm wondering if either of the following would work:
    US:!AK, US:!HI, US
    US:!AK, !HI, US

    The first code seems like it should work, but you're missing the price after </weight> in both instances:
    Code:
    <price>*-198.99:<weight>*:ups</weight></price>, <price>199-*:<weight>0-70:0.00</weight></price>
    Try this:
    Code:
    <price>*-198.99:<weight>*:</weight>ups</price>, <price>199-1199:<weight>0-70:</weight>0.00</price>,
    <price>1200-*:<weight>70-*:</weight>0.00</price>

 

 

Similar Threads

  1. What to do? Complex shipping calculation
    By gamenet in forum General Questions
    Replies: 3
    Last Post: 8 Aug 2010, 03:38 PM
  2. Complex shipping options?
    By Out2lunch in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 18 Jun 2009, 06:49 PM
  3. Complex Shipping - ideas wanted
    By Ryk in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 15 Nov 2006, 12:39 AM
  4. need a feww hints for a complex project
    By sboudon in forum General Questions
    Replies: 2
    Last Post: 1 Oct 2006, 01:54 AM
  5. Somewhat complex shipping system
    By duckydoodles.com in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 18 May 2006, 07:38 PM

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