Jump to content

Sorting Products


Guest Alirat

Recommended Posts

Guest Alirat

When customers browse for products they are not automatically coming up alphabetically. Is there any way to make this the default behaviour?

Link to comment
Share on other sites

Hi

First, in General Settings, under the styles & Misc tab, set Display newest products first to No.

Next, open includes/content/viewCat.inc.php and find this block of code (around line 95)...

	$orderSort = sprintf(' ORDER BY %s %s', $_GET['sort_by'], $orderType);

} else {

	if ($config['cat_newest_first']) {

		$orderSort = sprintf(' ORDER BY `date_added` DESC, `name` ASC');

	} else {

		$orderSort = false;

	}

}


Change it to....


	$orderSort = sprintf(' ORDER BY %s %s', $_GET['sort_by'], $orderType);

} else {

	if ($config['cat_newest_first']) {

		$orderSort = sprintf(' ORDER BY `date_added` DESC, `name` ASC');

	}  else {

		$orderSort = sprintf(' ORDER BY `name` ASC');

	}

}

Lee

Link to comment
Share on other sites

Guest Alirat

Hi

First, in General Settings, under the styles & Misc tab, set Display newest products first to No.

Next, open includes/content/viewCat.inc.php and find this block of code (around line 95)...

	$orderSort = sprintf(' ORDER BY %s %s', $_GET['sort_by'], $orderType);

} else {

	if ($config['cat_newest_first']) {

		$orderSort = sprintf(' ORDER BY `date_added` DESC, `name` ASC');

	} else {

		$orderSort = false;

	}

}


Change it to....


	$orderSort = sprintf(' ORDER BY %s %s', $_GET['sort_by'], $orderType);

} else {

	if ($config['cat_newest_first']) {

		$orderSort = sprintf(' ORDER BY `date_added` DESC, `name` ASC');

	}  else {

		$orderSort = sprintf(' ORDER BY `name` ASC');

	}

}

Lee

Thanks Lee that worked just dandy!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...