
Originally Posted by
coldmachineUK
... except for the pulldown menu which is displaying the order status options in the incorrect order despite the fact they show in the correct order via Localization -> Order Status.
You can edit /admin/orders.php
Lines 20-22 are similar to the following.
Simply add the text shown in red to cause the same sort order as the localization screen:
Code:
$orders_status = $db->Execute("select orders_status_id, orders_status_name
from " . TABLE_ORDERS_STATUS . "
where language_id = '" . (int)$_SESSION['languages_id'] . "' order by orders_status_id");
This will only affect the pulldown menu on the Admin->Customers->Orders page.