How do I modify the search form on the search page? |
![]() ![]() ![]() |
If you wish to modify the search form, you can either edit the script, or define your own search form, with the following HTML form code: If you wish to use your own search form, you may want to turn off the form displayed by the script from the Search Page configuration tab, under the Form Format setting. See ‘Configuring Zoom’ for more information. <form method="GET" action="search.php"> <input type="text" name="zoom_query" size="20"> <input type="submit" value="Search"> Results per page: <select name="zoom_per_page"> <option selected>10</option> <option >20</option> <option >100</option> </select> <br><br> Match: <input type="radio" name="zoom_and" value="0" checked> any search words <input type="radio" name="zoom_and" value="1"> all search words </form>
|