Announcement

Collapse
No announcement yet.

Pagination??

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Pagination??

    Hi All

    Got a question for yas, how do we do pagination.

    ie previous 20 and next 20 through product listings??

    Will be using Actinic BV7 if this makes any difference.

    Thanks in advance for any help

    Linzi

    #2
    Hi linzi

    There is a way you can achieve this by creating next and previous links between sections - so if your sections each have 20 products in them you can create a link at the bottom of your page to take you to the next section, i.e the next 20 products.

    If you copy this html and paste in it into the overall layout (primary template) for the section where you want the links to appear -

    <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>

    Then that will give you next and previous sections links.

    Hope that helps

    Comment

    Working...
    X