ZenphotoCMS Forum
Prev and next links - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: Prev and next links (/thread-1590.html)



Prev and next links - no64 - 2007-08-12

This is showing up the "prev" "pagenumber" "next" links below the albums.

`

`

how can I add an
`

rel="ajaxcontent"

`

to those displayed links?

Thank's




Prev and next links - aitf311 - 2007-08-12

Do a search for "function printPageListWithNav(" without the quotes in template-functions.php. You can add it to the output there.




Prev and next links - no64 - 2007-08-12

Do you mean this part:

`function printPageListWithNav($prevtext, $nexttext, $nextprev=true, $class="pagelist", $id=NULL) {

echo "";

$total = getTotalPages();

$current = getCurrentPage();

echo "n";

if ($nextprev) {

  echo "n  "; 

    printPrevPageLink($prevtext, "Previous Page");

  echo "";

}

for ($i=1; $i 



Prev and next links - aitf311 - 2007-08-12

I believe you will need to make the following change to the top of that function: echo "";

There is no other way to do this in the index.php or album.php that I know of.




Prev and next links - no64 - 2007-08-13

Well, I can't get it to work.....so there is no way to set up a "prev" and "next" manual so I can create a "href" with that "rel" inside?




Prev and next links - acrylian - 2007-08-13

Yes you can do that. Use these functions, they return only the link:
getNextPageURL()
getPrevPageURL()




Prev and next links - penzoto - 2007-08-13

*edit this forum does not render the code properly.
sry dude




Prev and next links - no64 - 2007-08-13

acrylian....could you please give me a complete code line - I have that little understanding in php, it is shameful




Prev and next links - acrylian - 2007-08-14

That's not shameful. I am not that great php programmer myself, but this is quite easy:

`

previous

`




Prev and next links - no64 - 2007-08-14

Thank's , I'll try it right away