Announcement

Collapse
No announcement yet.

Limit the number of products displayed

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

    Limit the number of products displayed

    Can anybody tell me if it is possible to limit the number of products displayed and have a page nav at the top to go to the next page of products.

    I could do this with sub sections i.e. page 1 / 2 etc. etc. but this doesnt look particularly tidy and i cant seem to get the next navigation layout selector to take me to the next sub section - it keeps taking me to the previous main section (the previous selector works as it should though).

    Any help would be greatly apreciated.

    Thanks in advance

    Julian

    #2
    Actinic allows you to include links to 'previous' and 'next' sections (i.e. sections at the same level in the store – sometimes known as 'sibling sections').
    To include a link to the previous section, insert the layout selector called 'PrevNextSectionLink' and use a fixed layout of 'Link To Previous Section'. For the link to the next section, the fixed layout you want to use is 'Link To Next Section'.
    Here is some code to copy and paste:
    <div style="float: left;">
    <actinic:variable name="PrevNextSectionLink" value="Link to Previous Section" />
    </div>
    <div style="float: right;">
    <actinic:variable name="PrevNextSectionLink" value="Link to Next Section" />
    </div>
    Kind regards,
    Bruce King
    SellerDeck

    Comment

    Working...
    X