Вот нашел такой код в файле catalog\controller\module\filter.php
// Сортировка данных фильтра
uasort($this->data['filters'], array('ControllerModuleFilter', 'sortFilters'));
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/filter.tpl')) {
$this->template = $this->config->get('config_template') . '/template/module/filter.tpl';
}
else {
$this->template = 'default/template/module/filter.tpl';
}
$this->render();
}
// Сортировка фильтров по значению sort_order, указанному в системе
static private function sortFilters($array_first, $array_second) {
if ($array_first['sort_order'] == $array_second['sort_order']) {
return 0;
}
return ($array_first['sort_order'] < $array_second['sort_order']) ? -1 : 1;
}