Page 1 of 1

Change sort order of shipping options at checkout

Posted: Wed Sep 09, 2015 5:15 am
by stevemills04
Is there a way, even if by edit files, to change the sort order of the shipping options? I am using FedEx. I want to sort by price, lowest first.

I find it rather silly that this wouldn't already be by default

Re: Change sort order of shipping options at checkout

Posted: Wed Sep 09, 2015 9:37 am
by straightlight
In catalog/controller/checkout/shipping_method.php file,

find:

Code: Select all

$sort_order[$key] = $value['sort_order'];
replace with:

Code: Select all

$sort_order[$key] = $value['quote'];
This should resolved the problem.

Re: Change sort order of shipping options at checkout

Posted: Fri Dec 16, 2016 6:51 am
by websiteworld
Did you get this to work?