I'm using Shop Site Pro version 9.0 and I'm trying to create a simple search functionality where customers can search by product name or product type.
The resulting page will look like all my other pages but show four products across, each linking to the a page specific to that product.
ISSUE 1 SEARCH RESULTS PAGE
If I understand this correctly, I could place this code:
<table border="1">
[-- LOOP SEARCH 4 --]
[-- IF SEARCHPRODUCT --]
<td>Product:</td>
[-- END_IF --]
[-- IF SEARCHLINK --]
<td>Link:</td>
[-- END_IF --]
[-- SEARCHRESULT --]
[-- END_LOOP SEARCH --]
</table>
on the search template on the position of the page where I want the results to show. Is this correct?
Would I put this code at the top of the page:
[-- DEFINE SEARCH_RESULTS --]
and this at the bottom?
[-- END_DEFINE SEARCH_RESULTS --]
Thanks