ZenphotoCMS Forum
Main album description in all subalbums? - 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: Main album description in all subalbums? (/thread-2009.html)



Main album description in all subalbums? - farhan - 2008-01-01

Anyway to show the description of main album in all of the subalbums ?




Main album description in all subalbums? - sbillard - 2008-01-02

`$album = $_zp_current_album;

while ($parent = $album->getParent()) { $album = $parent; }

if ($album == $_zp_current_album) {

// what do you want to do here? The album is the main one!

} else {

echo $album->getDesc();

}`

Caveat: I have not tried this!