Zen Cart Logo
Forums / Built-in Shipping and Payment Modules / Setting three different shipping methods with two carriers

Setting three different shipping methods with two carriers

Locked

Views: 908

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
21 Aug 2009, 8:40 PM
#1
meers007 avatar

meers007

New Zenner

Join Date:
Jul 2009
Posts:
5
Plugin Contributions:
0

Setting three different shipping methods with two carriers

Hi all,

One of the things I'm trying to do with my shipping is to set it so that I have three flat options on my site (www.runnerstags.com):

USPS Mail- $1.00 per set of 2 tags (each item is a minimum of two)
UPS 2 day- $10.00 for 1-10 sets of tags
UPS Overnight- $20.00 for 1-10 sets of tags

Do you guys have any idea of how to do this? For the USPS one, I started with the flat rate module and that seems to be working, but I don't know how to add other modules :frusty:

Cheers,
-Meers

22 Aug 2009, 6:29 PM
#2
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Setting three different shipping methods with two carriers

For the USPS ... if it is $1.00 per set of 2 ... how is that Flat Rate? Or did you do a lot of customization?

On the other two ... what happens if I buy 11 sets? or 20 sets?

You might be able to start with Item Rate and re-calculate the quantity in sets of 10 for the rate charge where any remainder increments it to the next set of charges ...

something like adding beneath the $item_total_count in the module:
$item_total_count = round( ($item_total_count/10) +.5) , 0);

NOTE: I did not test the calculation ... :cool: