Does anyone know their way around ZenPhoto? I want to change the way albums are displayed but cannot figure it out.
ATM, ZP shows 1 thumbnail image per album. I want it to show 3 unique images per album. How is it done? Thank you for your help.
PHP Code:
<div id="albums"> <?php while (next_album()): ?> <div class="album">
<div class="thumb"> <a href="<?php echo htmlspecialchars(getAlbumLinkURL());?>" title="<?php echo gettext('View album:'); ?> <?php echo getAnnotatedAlbumTitle();?>"><?php printAlbumThumbImage(getAnnotatedAlbumTitle()); ?></a> </div> <div class="albumdesc"> <h3><a href="<?php echo htmlspecialchars(getAlbumLinkURL());?>" title="<?php echo gettext('View album:'); ?> <?php echo getAnnotatedAlbumTitle();?>"><?php printAlbumTitle(); ?></a></h3> <small><?php printAlbumDate(""); ?></small> <p><?php printAlbumDesc(); ?></p> </div> <p style="clear: both; "></p> </div> <?php endwhile; ?> </div>
|