Page 1 of 1

How to disable sort bar?

Posted: Tue Feb 17, 2009 3:49 pm
by harris43
I have a store with only a couple of products. How do I get rid of the sort bar?

Re: How to disable sort bar?

Posted: Wed Feb 18, 2009 9:22 am
by mazhar
Edit your category display page and locate the following information in ascx file

Code: Select all

<asp:Label ID="SortResultsLabel" runat="server" Text="Sort:" SkinID="FieldHeader"></asp:Label>&nbsp;
                        <asp:DropDownList ID="SortResults" runat="server" AutoPostBack="true" CssClass="sorting" OnSelectedIndexChanged="SortResults_SelectedIndexChanged">
and change it as below

Code: Select all

<asp:Label ID="SortResultsLabel" runat="server" Text="Sort:" SkinID="FieldHeader" Visible="false"></asp:Label>&nbsp;
                        <asp:DropDownList ID="SortResults" runat="server" AutoPostBack="true" CssClass="sorting" OnSelectedIndexChanged="SortResults_SelectedIndexChanged" Visible="false">