Order products by SKU number

Hi there,

Can anyone tell me how to order my products by SKU number?

Thank you

I solve it by changing a function in the file
application\modules\products\models\Mdl_products.php

public function default_order_by()
{
    //$this->db->order_by('ip_families.family_name, ip_products.product_name');  //remove this line
      $this->db->order_by('ip_families.family_name, ip_products.product_sku'); //add this line
}

Thank you

Last Update: 18.11.2017