I'm hoping someone knows an easy way to change the Products default sort order to Name (A-Z). I can't really tell what order the Default is creating, but it isn't Name (A-Z) which would work best for my products.
I'd appreciate anyone's help. Thank you (OC 1.5.0)
Edit the files: catalog/controller/product/category.php, manufacturer.php , search.php and search.php and in each file find the code:
and replace it with:
Code: Select all
if (isset($this->request->get['sort'])) {
$sort = $this->request->get['sort'];
} else {
$sort = 'p.sort_order';
}
Code: Select all
if (isset($this->request->get['sort'])) {
$sort = $this->request->get['sort'];
} else {
$sort = 'pd.name';
}
Who is online
Users browsing this forum: No registered users and 56 guests