Is there any way to have images still appear on album.php if there are already the maximum number of albums?
What I want is that there is one column of at most three albums and then next to it is five columns of at most 15 images. The problem is that, for each album, a row is taken away of images. How would I stop this from happening so that even if there are albums it would still display up to 15 images?
For example, in my gallery right now there is one album with four subalbums and 16 images. I want each page of this album to have at most three albums and 15 images, so the first page would have three albums and 15 images and the second page would have one album and one image. Right now, it displays three albums on the first page (no images), 1 album and 10 images on the next page, and then six images on the third page.
(Sorry if I haven't explained this well enough)
Thanks!
Comments
The code I'm using for this:
`
<?php while(next_album()): ?>
" title="<?php echo gettext('View album:'); ?> <?php echo getBareAlbumTitle();?>"><?php printCustomAlbumThumbImage(getBareAlbumTitle(), NULL, 95, 95, 95, 95); ?>
" title="<?php echo gettext('View album:'); ?> <?php echo getBareAlbumTitle();?>"><?php printAlbumTitle(); ?>
<?php printAlbumDate(""); ?><?php echo truncate_string(getAlbumDesc(), 45); ?>
<?php endwhile; ?>
<?php while(next_image(false)): ?>
" title="<?php echo getBareImageTitle();?>"><?php printImageThumb(getBareImageTitle()); ?>
getShow()) { echo ' class="testing"'; } ?>><?php printImageTitle(true); ?>
<?php printImageDate(); ?>
<?php endwhile; ?>
`