Online Store Builder & eCommerce Checkout System

Welcome to our Support Portal!

A place where you can easily find solutions and ask questions

Call: +1-866-324-2764
Home Spacer|Spacer FAQ Spacer|Spacer Contact Us Spacer|Spacer Create Ticket Spacer|Spacer Announcements Spacer
Spacer

POPULAR TOPICS

Spacer



How can I make my own search box?

Beginners, to insert a search box use the keyword %OBJ_SEARCH_BOX_OBJ%, this will automatically insert a basic search box where the keyword is placed.

Advanced users, create a custom search box using the specs below:

1. Post the form to search_items.asp

<form action='search_items.asp' method='post' name='search'>

2. Include the hidden field named Form_Name

<input type='hidden' name='Form_Name' value='Search_Store'>

3. Include a field for the user to input the search term

<input type='Text' name='Search_Text'>

4. Include a submit button or image as below

<input type='submit' value='Search' name='Search_Store'>

5. Include an end of form tag

</form>

These are the minimum requirements for a search box to function correctly.  For an example of a working advanced search page please refer to the search.asp page.