====== Removing the "Please wait..." Dialog Window from Small Search Box ======
In v3.12 and up the small search box includes additional JavaScript to control the “Pease wait… searching” dialog window. The following article explains how to remove the dialog window from the small search box.
- Download the file //SmallSearchBox.asp// or //SmallSearchBox08.asp//. Stores created before v3.5 are most likely using //SmallSearchBox.asp//. While stores created with v3.5 and above are probably using //SmallSearchBox08.asp//. If you are not sure which file you are using you can try this trick. Open the file //header.asp// and look for the include code. The include will show you which file you are using. It will look something like this:
- Open your small search box file in a text editor, such as notepad or Dreamweaver.
- Edit the following lines of code if using //**SmallSearchBox.asp**//:
- Find:
- Replace with:
- Remove:
<%
Response.Write(pcf_InitializePrototype())
response.Write(pcf_ModalWindow(dictLanguage.Item(Session("language")&"_advSrca_23"), "small_search", 200))
%>
- Edit the following lines of code if using //**SmallSearchBox08.asp**//:
- Find:
- Replace with:
- Remove:
<%
Response.Write(pcf_InitializePrototype())
response.Write(pcf_ModalWindow(dictLanguage.Item(Session("language")&"_advSrca_23"), "small_search", 200))
%>
- Save the file and upload it to your server.