How to disable sort bar?
How to disable sort bar?
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?
Edit your category display page and locate the following information in ascx file
and change it as below
Code: Select all
<asp:Label ID="SortResultsLabel" runat="server" Text="Sort:" SkinID="FieldHeader"></asp:Label>
<asp:DropDownList ID="SortResults" runat="server" AutoPostBack="true" CssClass="sorting" OnSelectedIndexChanged="SortResults_SelectedIndexChanged">
Code: Select all
<asp:Label ID="SortResultsLabel" runat="server" Text="Sort:" SkinID="FieldHeader" Visible="false"></asp:Label>
<asp:DropDownList ID="SortResults" runat="server" AutoPostBack="true" CssClass="sorting" OnSelectedIndexChanged="SortResults_SelectedIndexChanged" Visible="false">