Jump to content

multi carriers shipping radio button and sorting


Recommended Posts

I have multiple carriers,

-when i get to the shipment page, all my 4 carriers are listed correctly, but again the radio button is selected randomly everytime, how can i make it automatically selecting the default carrier?

-How can I arrange or list the carriers by price (the cheapest on the top and the most expensive at the bottom)?

Link to comment
Share on other sites

  • 5 months later...
  • 1 year later...
  • 1 month later...

Make sure you have a default carrier select in BO Shipping>>Carriers

For sorting carriers by price add this to your orders.php around line 365 after


$resultsArray[] = $row;


}

function priceSort($a,$
   {
       return strcmp($a["price"], $b["price"]);
   }
   usort($resultsArray, "priceSort");

Link to comment
Share on other sites

  • 1 year later...

I can not get this code to work (presta 1.3). I have tried this suggested code in multiple places, where I have found $resultsArrary[] = $row;

 

Anyone else get this to work or have another solution?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...