21288 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 670 Views |
-
Go to previous page / next page

26 February 2011 at 12:13am
Hallo folks,
I have used this tutorial http://www.ssbits.com/tutorials/2009/creating-previous-and-next-buttons-on-a-page/.
But it doesn´t work how I want. I want that you can only switch between Subsubpage 1 and 2 (see example of the sidetree)- Page 1
- - Subpage 1 <- prev/next buttons are placed here
- - - Subsubpage 1
- - - Subsubpage 2- - Subpage 2
- - Subpage 3If I click on subsubpage2 on the next button, I jump to the startpage.
If I´am on subsubpage 2 to next button must not be shown.
Is it possible to set an if-statement for the control?<% if nextpage or something %>
<% control PrevNextPage(next) %>
<a href="$Link" title="Go to $Title">next page</a></ br>
<% end_control %>
<% end_if %>How can I check, if there is an "next-page" ?
Thanks for help.
-
Re: Go to previous page / next page

26 February 2011 at 10:36pm
I´ve found the solution:
<% control PrevNextPage(prev) %>
<% if LinkOrCurrent = link %>
<a href="$Link" title="Go to $Title" class="$LinkingMode"> < </a></ br>
<% end_if %>
<% end_control %><% control PrevNextPage(next) %>
<% if LinkOrCurrent = link %>
<a href="$Link" title="Go to $Title" class="$LinkingMode"> > </a></ br>
<% end_if %>
<% end_control %>That works fine!
| 670 Views | ||
|
Page:
1
|
Go to Top |

