Is there a way of setting a limit for the number of items displayed on a page? Under a sub category I have 500+ items (this is the most I can break it down), what I’m trying to do it only display 30 items at any time with a next button at the bottom/top or a link 1-30, 31-60, 61-90 etc.
Announcement
Collapse
No announcement yet.
Setting a limit for items per page
Collapse
X
-
Arrange your products into a series of subsections, and then include the following HTML code within Act_Primary.html (the overall layout template) just above NETQUOTEVAR:BULK:
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="NETQUOTEVAR:PREV_SECTION_URL">NETQUOTEVAR:PREV_SECTION_NAME</a></td>
<td align="right"><a href="NETQUOTEVAR:NEXT_SECTION_URL">NETQUOTEVAR:NEXT_SECTION_NAME</a></td>
</tr>
</table>
This will create links that can take people to the next section and to the previous section.
Comment
Comment