Here is an easy way to hide the search box at the top of the product listing page. The search controls are all contained in an html table at the very top of the productlist.ascx file. Navigate to the /desktopmodules/smith.buynow folder and open up productlist.ascx page in your favorite editor and set the visible property of the table to false or you can cut and paste the code below:
<table runat="server" id="tbMain" visible="false">
<tr>
<td>Search: <asp:DropDownList ID="ddlSearch" runat="server" Width="120px"></asp:DropDownList></td>
<td width="5px"></td>
<td>
<asp:TextBox ID="txtSearch" runat="server" Width="208px"></asp:TextBox>
<asp:Button ID="btnSearch" runat="server" Text="Go" OnClick="btnSearch_Click" />
Records:
<asp:DropDownList ID="ddlRecords" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddlRecords_SelectedIndexChanged">
<asp:ListItem>10</asp:ListItem>
<asp:ListItem>20</asp:ListItem>
<asp:ListItem>50</asp:ListItem>
<asp:ListItem>100</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr style="height:20"><td></td></tr>
</table>