Announcement

Collapse
No announcement yet.

Can I create links to 'Previous' and 'Next' sections?

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

    Can I create links to 'Previous' and 'Next' sections?

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

    HTML Code:
    <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>
Working...
X