Page 1 of 2 12 LastLast
Results 1 to 10 of 14
  1. #1
    Join Date
    Jan 2007
    Posts
    3
    Plugin Contributions
    0

    Default Multiple Shipping rates for different product types

    Hi,

    I would like to be able to charge different shipping rates according to Product types.

    I will be selling 3 products for now and would like to configure zencart so that Shipping co sts vary according to country and product type.

    Example
    Product A shipping cost to US costs $10
    Product A shipping cost toAustralia costs $18

    Product B shipping cost to US costs $13
    Product B shipping cost toAustralia costs $20

    From where do I start

    Thanks for any future help

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

    Default Re: Multiple Shipping rates for different product types

    The Per Unit perweightunit Shipping Module utilizes the products_weight for the shipping price on a per product basis ...

    If you were to make a proper ratio between US and Australia then you could clone this module and set one unit rate for the US and one unit rate for Australia and then add the Zones to manage which one shows for which customer ...
    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. #3
    Join Date
    Jan 2007
    Posts
    3
    Plugin Contributions
    0

    Default Re: Multiple Shipping rates for different product types

    I understand what you mean however I am new to zencart. What do you mean by clone? How do I clone the module?

    Thanks

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

    Default Re: Multiple Shipping rates for different product types

    There are several thread on cloning shipping modules ... searching for:

    clone shipping
    cloning shipping

    will find many of them ...

    This one shows how to clone the item.php shipping module ...

    http://www.zen-cart.com/forum/showthread.php?t=40164
    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. #5
    Join Date
    Jan 2007
    Posts
    3
    Plugin Contributions
    0

    Default Re: Multiple Shipping rates for different product types

    Hi,

    I clone the perweightunit module and I set different handling however this is only true if the shipping cost is different for just the zones.

    I need to be able to distinguish between product types..

    Let say :

    If I ship a mobile to US cost would be $10, if I ship it to Australia it would be $20

    BUT if I ship a different product type, let say a Book the shipping cost to
    US would not neccessary be $10

    I need this flexibility since the company I am buying from has different shipping cost depending on the COUNTRY and the PRODUCT TYPE

    Thanks

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

    Default Re: Multiple Shipping rates for different product types

    While this isn't difficult it does take a bit of thought to understand how to use this ... so let's follow the bouncing ball ...

    Let's assume we want 3 zones and we clone perweightunit for Canada, Austraila and United States:
    perweightunitca
    perweightunitau
    perweightunitus

    This would mean that on a global replace of all:
    perweightunit

    changes to:
    perweightunitca
    perweightunitau
    perweightunitus

    And on a global replace all PERWEIGHTUNIT chages to:
    PERWEIGHTUNITCA
    PERWEIGHTUNITAU
    PERWEIGHTUNITUS

    Assuming the cloning is done right ... and the 3 zones are configured right for the 3 countries ...

    We are going to set the unit price on each module as:
    perweightunitca 1.50
    perweightunitau 1.00
    perweightunitus 1.25

    What this will do is:

    On a Product with a products_weight of 10 is give the following shipping calculation for when we order quantity 3:

    perweightunitca 3 * 10 * 1.50 = $45 shipping
    perweightunitau 3 * 10 * 1.00 = $30 shipping
    perweightunitus 3 * 10 * 1.25 = $37.50 shipping


    On a Product with a products_weight of 2 is give the following shipping calculation for when we order quantity 4:

    perweightunitca 2 * 4 * 1.50 = $12 shipping
    perweightunitau 2 * 4 * 1.00 = $8.00 shipping
    perweightunitus 2 * 4 * 1.25 = $10.00 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: 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. #7
    Join Date
    Oct 2006
    Posts
    10
    Plugin Contributions
    0

    Default Re: Multiple Shipping rates for different product types

    Wow... thanks for the excellent explanation...

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

    Default Re: Multiple Shipping rates for different product types

    You are most welcome ... hope that helps you out ...
    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!

  9. #9
    Join Date
    Sep 2007
    Location
    Manchester, England
    Posts
    168
    Plugin Contributions
    0

    Default Re: Multiple Shipping rates for different product types

    The thing that annoys me most about Zen Cart is that it takes the really long way round to get to a simple solution.

    It makes me wonder why they don't include like a Quantity shipping section in the admin area, similar to attributes and you can set up shipping that way.

    Ah well, for now I'll have to keep attributing up the tare-module and cloning options to be able to add a paragraph into the homepage.

  10. #10
    Join Date
    Mar 2009
    Location
    Crockett, Texas
    Posts
    139
    Plugin Contributions
    0

    Default Re: Multiple Shipping rates for different product types

    Does anyone know how to incorporate the following:
    Based on FLAT RATE SHIPPING

    Example:
    A bumper cover would cost: 54.00 to ship
    A fender would cost: 70.00 to ship
    A headlight (or boxed item) would cost: 15.00 to ship &
    A hood would cost: 120.00 to ship

    I would like to incorporate flat rate shipping, because I use multiple carriers. Can anyone tell me how to do this?


    Thanks,

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v151 Can I style different product listing pages for different product types?
    By DannyVarley in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 12 Jun 2013, 05:45 PM
  2. Different Shipping Options for Different Customer Types
    By scottmcclean in forum Built-in Shipping and Payment Modules
    Replies: 42
    Last Post: 27 Mar 2013, 03:53 PM
  3. Replies: 2
    Last Post: 27 Oct 2010, 01:45 PM
  4. Different shipping methods for different product types?
    By talisman-studios in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 17 Sep 2008, 04:59 PM
  5. shipping config for different shipping types by country
    By jclegg in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 17 Jun 2006, 11: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