imaginamation Posted January 26, 2004 Share Posted January 26, 2004 I want to put an html form search box on a page that will access the correct search for my store. Can, and how, can I do this? Thank you to everybody, Cory Link to comment Share on other sites More sharing options...
imaginamation Posted January 26, 2004 Author Share Posted January 26, 2004 Also, I want to have the search search in not just the product title, but in the description. Right now, a customer can only search by product name. I need them to be able to search for words in the description, how can I do this? Link to comment Share on other sites More sharing options...
quetzlcoatl Posted January 26, 2004 Share Posted January 26, 2004 Hi, To answer your first question, you could try building a normal HTML form, using the method "get" and set the action to the location of advanced_search_result.php like this: <form method="GET" action="http://www.mystore.com/catalog/advanced_search_result.php"> <input type="text" name="keywords"> <input type="submit" value="search"> </form> That's how the form is built in boxes/search.php (the name "keywords" is important). For your second question, there is a contribution that will search product descriptions, I believe it's called "SearchBox Enhancement". Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.