We will probably not code this for you. You can make the change yourself, probably without not too much trouble. But first you will need to familiarize yourself with the Zenphoto theming tutorial on the WEB site.
THX, but could you tell me in which php file I can find the decalration of the tumb.obj. I have been looking inside the image-class php file but didn´t find the exact line, maybe you could help me here
This is what worked for me on album.php version zenphoto-1.4.2.3 Specifically adding the last two lines after this line.. <?php printImageThumb(getAnnotatedImageTitle()); ?>
Comments
<div id="images">
<?php while (next_image(false, $firstPageImages)): ?>
<div class="image">
<div class="imagethumb">" title="<?php echo getBareImageTitle();?>"><?php printImageThumb(getAnnotatedImageTitle()); ?><p align="center"><?php echo getBareImageTitle();?></p></div>
</div>
<?php endwhile; ?>
(((
<div id="images">
<?php while (next_image(false, $firstPageImages)): ?>
<div class="image">
<div class="imagethumb">" title="<?php echo getBareImageTitle();?>"><?php printImageThumb(getAnnotatedImageTitle()); ?><p align="center"><?php echo getBareImageTitle();?></p></div>
</div>
<?php endwhile; ?>
)))
Specifically adding the last two lines after this line..
<?php printImageThumb(getAnnotatedImageTitle()); ?>
<p align="center">
<?php echo getBareImageTitle();?></p>