ZenphotoCMS Forum
Album description only on first page with thumbs - 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: Album description only on first page with thumbs (/thread-3063.html)



Album description only on first page with thumbs - jackdaw - 2008-06-08

This looks like this topic: http://www.zenphoto.org/support/topic.php?id=2833, but I guess it's a bit different...

I would like to add album descriptions that are only visible on the first page of a multi-paged album with images. So when I enter an album, above is the description, beneath the thumbs. When I go to page two I don't want to see the description anymore.

What I did now was adding 'printAlbumDesc(true);' before the 'while (next_album())' code inside album.php, but this doesn't work. It shows up, but on all the pages...

Also I would like to know (if the above is possible) how to check IF a description is added, so that the css-styling I added is not printed (I enclosed the above code in a 'div').




Album description only on first page with thumbs - acrylian - 2008-06-08

getCurrentPage()gets the current page number and if getAlbumDesc() is empty there is apparently no description.
http://www.zenphoto.org/documentation-official/zenphoto/_template-functions.php.html
Use and if/else construct to check that.




Album description only on first page with thumbs - jackdaw - 2008-06-08

Thanks for the tips. I could have come up with the same ideas, but I didn't ...