Hey guys,
First off I want to thank you for all your help thus far, it's really moving me forward with my site (since I am a total newb with this stuff!).
I am now trying to get the results on my search page organized. I am trying to get a pagination working, a results per page selection box, and the "sort by" selection box (which I haven't gotten to work yet). If you look at the search results on this site http://www.airsoftandrc.com/, those 3 things are there. Are they most likely using shopsite tags?
Here is my search results template:
[-- DEFINE SEARCH_RESULTS --]
[--INCLUDE head PROCESS--]
<div class="bd">
[--INCLUDE sideBar PROCESS--]
<div class="results">
[-- SearchSortBy --]
<div class="resultCount">Showing [-- SearchResultCount --] items.[-- SearchPrevNext --]</div>
<ul>
[-- LOOP SEARCH --]
[-- IF SEARCHPRODUCT --]
[-- SEARCHRESULT --]
[-- END_IF --]
[-- IF SEARCHLINK --]
[-- END_IF --]
[-- END_LOOP SEARCH --]
</ul>
<div class="resultCount">Showing [-- SearchResultCount --] items.[-- SearchPrevNext --]</div>
</div>
</div>
[--INCLUDE foot PROCESS--]
[-- END_DEFINE SEARCH_RESULTS --]
And here is the link to my site as it stands so far: http://etcigar.bizland.com/store/index.html
I have been looking through the custom tags, but still having trouble. Any additional pointers or tips are always appreciated, thanks!