How to disable sort bar?

Store UI, layout, design, look and feel; Discussion on the customer facing pages of your online store. Cascading Style Sheets, Themes, Scriptlets, NVelocity and the components in the ConLib directory.
Post Reply
harris43
Lieutenant (LT)
Lieutenant (LT)
Posts: 64
Joined: Fri Oct 13, 2006 12:17 pm

How to disable sort bar?

Post by harris43 » Tue Feb 17, 2009 3:49 pm

I have a store with only a couple of products. How do I get rid of the sort bar?

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

Re: How to disable sort bar?

Post by mazhar » Wed Feb 18, 2009 9:22 am

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">

Post Reply