Category List Page: Item Sort Order - Gold R9

For general questions and discussions specific to the AbleCommerce GOLD ASP.Net shopping cart software.
Post Reply
jcw2m
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 27
Joined: Fri Sep 07, 2012 9:51 am

Category List Page: Item Sort Order - Gold R9

Post by jcw2m » Wed Feb 25, 2015 12:17 pm

AbleCommerce GoldR9 (build 7670)
CategoryListPage.ascx

Hi,

When this display is assigned to a category, the products listed do not follow the sort order shown in Admin. I understand from our Able Angel that categorygridpages won't sort that way because it is pulling items from several categories and each category will have a product in first place. Is there a way to achieve this for the Category List Page so it works like Category Grid 4 as far as sort order?

Thanks!
Julie

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Category List Page: Item Sort Order - Gold R9

Post by mazhar » Thu Feb 26, 2015 3:05 am

Edit
Just pass "OrderBy ASC" as sort expression and hopefully it will do the trick.

Code: Select all

<asp:ListItem Text="" Value="OrderBy ASC"></asp:ListItem>
..............
..............
..............
I think this will load the items in admin order unless some one choose a different sort.

jcw2m
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 27
Joined: Fri Sep 07, 2012 9:51 am

Re: Category List Page: Item Sort Order - Gold R9

Post by jcw2m » Tue Mar 03, 2015 1:47 am

Hi Mazhar,

I'm sorry, I literally just saw this and will need to update the email used for notifications. Thanks for replying. Order by ASC was the first step. Unfortunately, while that did successfully display items in ascending order, it did not match the order of items in admin. I can't tell what would be causing this in the list page view.

Thanks
Julie

meer2005
Captain (CAPT)
Captain (CAPT)
Posts: 245
Joined: Wed Feb 09, 2005 2:00 pm

Re: Category List Page: Item Sort Order - Gold R9

Post by meer2005 » Tue Mar 03, 2015 9:02 am

Check to see if the first few products are set to featured within the product record. From what I recall, it sorts with featured items displayed first and then matches the order of the admin.

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Category List Page: Item Sort Order - Gold R9

Post by mazhar » Wed Mar 04, 2015 8:20 am

For my tests with few products under a category following does helps.

Code: Select all

<asp:ListItem Text="" Value="OrderBy ASC"></asp:ListItem>

Post Reply