BuffaloWeb Posted November 5, 2005 Posted November 5, 2005 Is there somewhere that I am supposed to set what order that shipping rates will be displayed in? I currently have only UPS installed, and I get a cart displaying: Shipping Method This is currently the only shipping method available to use on this order. United Parcel Service (1 x 5lbs) Next Day Air Early AM $60.47 Next Day Air $28.41 Next Day Air Saver $25.59 2nd Day Air $15.58 3 Day Select $11.19 Ground $7.87 As opposed to what I want which would be: Ground $7.87 3 Day Select $11.19 2nd Day Air $15.58 Next Day Air Saver $25.59 Next Day Air $28.41 Next Day Air Early AM $60.47 (lowest price displayed first) I would have thought it would have simply been an option within the Config/Mods/Shipping, but no such luck! I also tried reversing the order in which the shipping options are displayed in ups.php: from: $this->types = array('1DM' => 'Next Day Air Early AM', '1DML' => 'Next Day Air Early AM Letter', '1DA' => 'Next Day Air', '1DAL' => 'Next Day Air Letter', '1DAPI' => 'Next Day Air Intra (Puerto Rico)', '1DP' => 'Next Day Air Saver', '1DPL' => 'Next Day Air Saver Letter', '2DM' => '2nd Day Air AM', '2DML' => '2nd Day Air AM Letter', '2DA' => '2nd Day Air', '2DAL' => '2nd Day Air Letter', '3DS' => '3 Day Select', 'GND' => 'Ground', 'GNDCOM' => 'Ground Commercial', 'GNDRES' => 'Ground Residential', 'STD' => 'Canada Standard', 'XPR' => 'Worldwide Express', 'XPRL' => 'worldwide Express Letter', 'XDM' => 'Worldwide Express Plus', 'XDML' => 'Worldwide Express Plus Letter', 'XPD' => 'Worldwide Expedited'); to: $this->types = array('GND' => 'Ground', 'GNDCOM' => 'Ground Commercial', 'GNDRES' => 'Ground Residential', 'STD' => 'Canada Standard', '3DS' => '3 Day Select', '2DM' => '2nd Day Air AM', '2DML' => '2nd Day Air AM Letter', '2DA' => '2nd Day Air', '2DAL' => '2nd Day Air Letter', '1DM' => 'Next Day Air Early AM', '1DML' => 'Next Day Air Early AM Letter', '1DA' => 'Next Day Air', '1DAL' => 'Next Day Air Letter', '1DAPI' => 'Next Day Air Intra (Puerto Rico)', '1DP' => 'Next Day Air Saver', '1DPL' => 'Next Day Air Saver Letter', 'XPR' => 'Worldwide Express', 'XPRL' => 'worldwide Express Letter', 'XDM' => 'Worldwide Express Plus', 'XDML' => 'Worldwide Express Plus Letter', 'XPD' => 'Worldwide Expedited'); No luck there either... Any advice? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.