Support

Account

Home Forums General Issues Sort ASC a select field in backend Reply To: Sort ASC a select field in backend

  • Add the filter like shown in the document I provided, in your filter you just have to do

    
    $choices = $field['choices'];
    asort($choices, SORT_NATURAL);
    $field['choices'] = $choices;