I was able to add a piece of javascript code that would enable the gallery to load in a content box and open an album in the same box, i'm trying to accomplish this now with the page navigation, such as Next, Previous, and the page numbers at the top.
It was simple enough with the album, i just added it like any link
(for example, the original code for linking to albums:
`
" title="<?php echo getAlbumTitle();?>"><?php printAlbumThumbImage(getAlbumTitle()); ?>`
I edited it into this:
`
', 'content_bg')" title="<?php echo getAnnotatedAlbumTitle();?>"><?php printAlbumThumbImage(getAnnotatedAlbumTitle()); ?>`
I just need to know how `<?php printPageListWithNav('<', '>'); ?>` generates the links or calls them.
thanks for the help
EDIT: I just found out where it determines the link within template functions, but i was expecting something like what i had encountered with the Albums
any help on how i can add that little bit of code?
Comments