Search found 3 matches

by alex
Fri Sep 19, 2008 1:46 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Need assistance on product sorting
Replies: 8
Views: 8984

Re: Need assistance on product sorting

The default is the first option. If you want items in a specific order, sort them in your admin and then make featured your first option and it will display them in the order you have them sorted in your admin. Example: <asp:ListItem Text="Featured" Value="IsFeatured DESC, Name ASC"></asp:ListItem>...
by alex
Fri Sep 19, 2008 1:44 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Need assistance on product sorting
Replies: 8
Views: 8984

Re: Need assistance on product sorting

Alex, It sounds like your asking for two things: 1. Adding an additional way to sort. 2. Eliminate the default sorting. Or are you just wanting to eliminate the default sorting so the products/categories are displayed in the order specified on the Admin side? Yes, I just want to make the products o...
by alex
Thu Sep 18, 2008 4:33 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Need assistance on product sorting
Replies: 8
Views: 8984

Need assistance on product sorting

My client wants to display products in a specific order on several pages. we can use the arrows on the catalog page to change the order of products. By the default the pages have a drop down menu that sorts items from A-Z. I added a listItem as below: <asp:DropDownList ID="SortResults" runat="server...