Announcement

Collapse
No announcement yet.

Previous/Next Page

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

    Previous/Next Page

    Is it possible in V8 to use this facility that was in V7?

    Haven't found any reference to it anywhere.

    David
    -----------------------------
    www.synchronisedwebdesign.com
    Location: North Yorkshire UK

    #2
    Have you seen this v8 thread http://community.actinic.com/showthread.php?t=22240


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      Hi Jont,

      Thanks. No, I hadn't seen it and I thought I'd read every post!

      What I'm looking for is what we had in V7 with the different sections to go either previous or next.

      I will probably keep my eye on the other post to see if Chris comes up with a super answer to all our prayers! One that does everything and also builds the sites.

      David
      -----------------------------
      www.synchronisedwebdesign.com
      Location: North Yorkshire UK

      Comment


        #4
        Also, if you just want 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's some code to copy and paste:
        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>

        Comment


          #5
          Wonderful.

          Thanks very much for this info, Chris.

          David
          -----------------------------
          www.synchronisedwebdesign.com
          Location: North Yorkshire UK

          Comment


            #6
            thanks for this, how would i get it to show something when you are at the end of the list of sections instead of being blank? for example "end of list"

            Comment


              #7
              Read up on BlockIf's. Something like:
              Code:
              blockif <actinic:variable name="PrevNextSectionLink" value="Link to Next Section" /> IsEmpty
                end of list
              /blockif
              N.B. pseudo code above. Don't just copy / paste it.
              Norman - www.drillpine.biz
              Edinburgh, U K / Bitez, Turkey

              Comment

              Working...
              X