Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to Re-Order USPS Shipping Options by Cost?


krdito

Recommended Posts

We offer three USPS shipping options: Express Mail, Priority Mail, and Parcel Post.

 

During checkout, our customers are shown these 3 options in order of price, highest to lowest. We would like to reverse the order so that the most economical method is shown first.

 

I have searched and searched with the USPS shipping module, but can't figure out how to change to order to show the shipping methods from lowest to highest cost.

 

Can anyone help?

 

Many thanks!!

Link to comment
Share on other sites

Looks like "Added sorting of USPS rates from least to most expensive" was part of USPS Methods Version 3.0.2.

 

I am using Version 6.0 and don't see an option to change the USPS sort order (mine is shown from most to least expensive).

 

Any help is greatly appreciated!

Link to comment
Share on other sites

  • 3 weeks later...

It's a simple programming task you learn when you're first starting out. I'm tired of programming today, but I'll help you get there:

 

Put this piece of code in the file that displays the shipping options (we use a custom checkout_payment.php page and it displays the shipping rates) to see the array delivered from the USPS: " <?php print_r($quotes) ?> "

Then use a little bit of php code to resort the array based on prices before they're printed on the screen (look for a for look in the code).

Check this page out: http://php.net/manual/en/array.sorting.php

 

Maybe in a couple of days or so, I'll get around to it. I had the same thought today, oddly enough. SWED.

Link to comment
Share on other sites

$quotes on checkout_shipping is a combination of a couple of arrays, including methods and rates. In USPS shipping methods 6.0 there is actually code that states "to sort highest to lowest" and uses the arsort function. I attempted to reverse this by simply changing it to rsort, but it changed nothing.

Link to comment
Share on other sites

  • 2 months later...

$quotes on checkout_shipping is a combination of a couple of arrays, including methods and rates. In USPS shipping methods 6.0 there is actually code that states "to sort highest to lowest" and uses the arsort function. I attempted to reverse this by simply changing it to rsort, but it changed nothing.

We have not been able to figure this out, although my husband Avec has a lot of php experience. Anyone able to give us a bit more guidance to get this accomplished?

 

Many thanks!

 

I would suggest switching over to this USPS contribution:

 

osCommerce v2.2 - http://addons.oscommerce.com/info/8403

osCommerce v2.3.1 - http://addons.oscommerce.com/info/8327

 

Otherwise, I think the opposite of the arsort function is asort, not rsort.

Link to comment
Share on other sites

a.forever -THANK YOU! I knew it has to be something stupid...changed to "asort" and the shipping prices are now shown from lowest to highest.

 

Now off to figure out how to make Priority Mail the default, even if it is not the cheapest : )

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...