If you want to change default product sorting to sort by product name,

Locate file

\system\modification\catalog\controller\product\category.php

Search for

$sort = 'p.sort_order';

Replace with

$sort = 'pd.name';

You can also change default sorting to

Price

$sort = 'p.price';

Model

$sort = 'p.model';