Announcement

Collapse
No announcement yet.

How to add a next page

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

    How to add a next page

    Hi,

    On my site I have lots of items, I wanted to setup the catalog so that there are anumber of items per page and the customer then hits on page 1 of 10 etc.

    Can this be done and how?

    www.4-motorcycles.co.uk

    #2
    This cannot be done I'm afraid.

    You need to manually split your sections into sections, and then use the 'Next/Previous' code within your overall layout (Act_Primary) template to provide links back and forth between sections that are next to each other.

    The code you need is below, and there is a discussion about using it in

    http://community.actinic.com/showthr...&threadid=5557

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

    Comment

    Working...
    X