Hi,
I have a list of projects that their order is sorted manually by the user trough arrows (k_up_down):
[project 1]
[project 2]
[project 3]
… and so on.
So, my problem is, inside each project I need a "Next Project" link.
That means that inside [project 1], "Next Project" link should take me to [project 2], and so on.
How can I achieve this?
The code I'm using takes me from [project 1] to [project 2] but then it gets "stuck" on [project 2]:
Thanks!
I have a list of projects that their order is sorted manually by the user trough arrows (k_up_down):
[project 1]
[project 2]
[project 3]
… and so on.
So, my problem is, inside each project I need a "Next Project" link.
That means that inside [project 1], "Next Project" link should take me to [project 2], and so on.
How can I achieve this?
The code I'm using takes me from [project 1] to [project 2] but then it gets "stuck" on [project 2]:
- Code: Select all
<cms:pages start_on=k_page_link orderby='weight' limit='1' offset='1'> <div><a href="<cms:show k_page_link />">next project</a></div> </cms:pages>
Thanks!