Main album description in all subalbums?

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

Comments

  • `$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!
Sign In or Register to comment.