Results 1 to 9 of 9
  1. #1
    Join Date
    May 2010
    Posts
    145
    Plugin Contributions
    0

    Default Shipping -USA only, flat rate + per item charge?

    Okay...I did several searches, but can't find what Im looking for.

    I'm *mostly* ready to open shop and start taking orders. Here are the last things that need fixed so I can do that. I plan to change most of them in the future, but for now this one thing will get me in biz.


    I'm wanting to ship to the USA only.
    I want to charge a flat base rate for all orders.
    I want to add a per-item charge based on the item.

    I can't figure out how to make all three of those work together?

    I've found the individual pieces, but they're scattered among other things and don't seem to be available on their own?

    I'm planning to purchase a good postal scale and switch to the USPS application later, but for now this system will get me up and running, if I can just figure out how to implement it.

    Thanks in advance for any help. :)

    DL

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

    Default Re: Shipping -USA only, flat rate + per item charge?

    Create a Zone for your definition of the USA ...

    When you say you want a Flat Rate and then go on to say you want a Per Item Charge based on Item ... what are you really say you want for 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!

  3. #3
    Join Date
    May 2010
    Posts
    145
    Plugin Contributions
    0

    Default Re: Shipping -USA only, flat rate + per item charge?

    I want a $3.50 flat rate.

    Most of my buttons are very, very small, and a bunch of them can be shipped for $3.50.

    But, other items cost more, so I want to charge a per-item rate for those to be added to the flat rate.

    Flat rate: 3.50
    Big Button: .25
    Box of anvils: 45.00

    You see?

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

    Default Re: Shipping -USA only, flat rate + per item charge?

    Would a minimum charge of $3.50 work ... where you could put in the per item charge for shipping in the Product Weight products_weight field and use the Per Unit perweightunit shipping module with a bit of customization?
    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. #5
    Join Date
    May 2010
    Posts
    145
    Plugin Contributions
    0

    Default Re: Shipping -USA only, flat rate + per item charge?

    Yes; a $3.50 minimum would be fine. It would narrow the number of items that require more shipping.

    My scales are on the way...and I'm trying to apply for the USPS tools thing...but I'm waiting for them to email me back because I'm unsure which address to use.

    I live 30 miles out of town. I send mail from one location and receive it at another...and I'm not sure which the USPS would prefer I use for their application. I would assume they want the one I'm shipping it from, since that's the one that applies when calculating the costs. But, I want to hear from them to be sure.

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

    Default Re: Shipping -USA only, flat rate + per item charge?

    What the Per Unit perweightunit module does is let you enter what you want to charge for shipping per Product per quantity ...

    So if you enter on the Product Weight .50, it would charge $0.50 ... if 2 were ordered then it would be 2 x .50 or $1.00 ...

    The one draw back is, when you switch to USPS you will need to re-enter all of your weights for your products ...

    As to what to do with USPS, to get correct Rate Quotes, you would need to enter the information for where you are shipping from on the Configuration ... Shipping/Packaging ... this way the rates will match where you are actually doing your shipping from ...

    To customize the Per Unit perweightuni shipping module for making it a minimum of $3.50 you can edit the file:
    /includes/modules/shipping/perweightunit.php

    and change the code for:
    Code:
        $this->quotes = array('id' => $this->code,
                              'module' => MODULE_SHIPPING_PERWEIGHTUNIT_TEXT_TITLE,
                              'methods' => array(array('id' => $this->code,
                                                       'title' => MODULE_SHIPPING_PERWEIGHTUNIT_TEXT_WAY,
                                                       'cost' => MODULE_SHIPPING_PERWEIGHTUNIT_COST * ($total_weight_units * $shipping_num_boxes) +
                                                       (MODULE_SHIPPING_PERWEIGHTUNIT_HANDLING_METHOD == 'Box' ? MODULE_SHIPPING_PERWEIGHTUNIT_HANDLING * $shipping_num_boxes : MODULE_SHIPPING_PERWEIGHTUNIT_HANDLING) ) ));
    To read:
    Code:
        $this->quotes = array('id' => $this->code,
                              'module' => MODULE_SHIPPING_PERWEIGHTUNIT_TEXT_TITLE,
                              'methods' => array(array('id' => $this->code,
                                                       'title' => MODULE_SHIPPING_PERWEIGHTUNIT_TEXT_WAY,
                                                       'cost' => (MODULE_SHIPPING_PERWEIGHTUNIT_COST * ($total_weight_units * $shipping_num_boxes) < 3.50 ? 3.50 : MODULE_SHIPPING_PERWEIGHTUNIT_COST * ($total_weight_units * $shipping_num_boxes)) +
                                                       (MODULE_SHIPPING_PERWEIGHTUNIT_HANDLING_METHOD == 'Box' ? MODULE_SHIPPING_PERWEIGHTUNIT_HANDLING * $shipping_num_boxes : MODULE_SHIPPING_PERWEIGHTUNIT_HANDLING) ) ));
    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!

  7. #7
    Join Date
    May 2010
    Posts
    145
    Plugin Contributions
    0

    Default Re: Shipping -USA only, flat rate + per item charge?

    Wow. Thanks! I'll give it a shot tomorrow. :)

    DL

  8. #8
    Join Date
    May 2010
    Posts
    145
    Plugin Contributions
    0

    Default Re: Shipping -USA only, flat rate + per item charge?

    That's working great! Thank-you!!!!

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

    Default Re: Shipping -USA only, flat rate + per item charge?

    Thanks for the update that this is working for you ...
    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!

 

 

Similar Threads

  1. Flat rate shipping for USA only
    By amart79196 in forum General Questions
    Replies: 7
    Last Post: 24 Jun 2016, 06:16 AM
  2. Shipping ... Free for USA/International Base Rate plus Charge Per Item
    By thegoodlifestore in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 6 Jul 2010, 02:09 PM
  3. Flat Rate Per Item Shipping ?
    By haredo in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 25 Jan 2010, 06:56 AM
  4. flat rate shipping + additional per item charge?
    By ohsgal in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 7 Apr 2009, 03:00 PM
  5. Per Item Flat Rate Shipping
    By dannyd in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 4 Mar 2009, 10:01 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