Hi,
I'm looking for a function which makes it possible to deactivate thumbnails if there's only one image in that particular album. For example: This is an album with 3 pictures:
http://www.benvandenberghe.com/photo.php?album=empty-cages- The thumbnails fit the design. But this is an album with only 1 picture:
http://www.benvandenberghe.com/photo.php?album=whiteboy- The thumbnail looks kinda stupid.
Is it possible to implement some code that applies to my wishes? (i'm a php-rookie)
Thanks in advance,
Senne
Comments
`
<?php if(getNumImages() != 1) {; ?> // Part one of the modification
<?php while (next_image(false, $firstPageImages)): ?>
<?php endwhile; ?>
<?php }; ?> // part two of the modification`
Thank you so much acrylian!