To get custom sized thumbs and number of thumbs/page, I tried on the album.php page the following:
setOption("albums_per_page",12,false);
<?php printCustomSizedImage(getImageTitle(),null,100,100); ?>
It did print thumbs sized 100x100, but 20 of them per page (as set in admin), not 12, as requested in the theme.
This is the code from albums.php:
Quote:<!-- Images -->
<?php while (next_image(false, $firstPageImages)): ?>
<div class="thumb">
<a rel="floatbox.pix" rev="type:img
href:`<?php echo getCustomImageURL(null,null,540);?>`"
href="<?php echo htmlspecialchars(getImageLinkURL());?>"
title="<?php echo getImageTitle();?>">
<?php printCustomSizedImage(getImageTitle(),null,100,100); ?>
<p class="caption"><?php echo getBareImageTitle();?></p>
</div>
<?php endwhile; ?>
On the other hand, the setOption("albums_per_page",12,false);
printCustomAlbumThumbImage(getAlbumTitle(),null,100,100);
used on the index.php page did produce a page of 12 thumbs.