Just ran into a new problem
I updated zenphoto to 1.4.6 today.
I have this (sub)album layout: zp/albums/Panoramas/House of Karin/
Into that I would put panoramas of every room, and each panorama resides in a folder. I don't want to create further subalbums, just to have a text file for each room treated as an image, so image-pano.php gets called and handles it. Now if I put a text file into zp/albums/Panoramas/House of Karin/ then I see it show up, however if I create folders (which I have to, because each pano stores hundreds of small images in subfolders) then zenphoto completely ignores the <?php while (next_image()): ?> part of album-pano.php!
I thought maybe I did something wrong, so I copied the exact code from themes/basic/album.php but it behaves the same way!
How do I get ZP to ignore folders in "zp/albums/Panoramas/House of Karin/" and to show the text files? Is this a 1.4.6 bug?
class-textobject and class-AnyFile are enabled.
album-pano.php:
`
<?php while (next_album()): ?>
<div class="album-box">
<a>" title="<?php echo gettext('View album:'); printAnnotatedAlbumTitle(); ?>"><?php printAlbumThumbImage(getAnnotatedAlbumTitle()); ?></a>
<div class="album-info-overlay">
<a>" title="<?php echo gettext('View album:'); printAnnotatedAlbumTitle(); ?>">
<div class="album-pano-thumb-title">Title: <?php printAlbumTitle(); ?>
Date: <?php printAlbumDate(""); ?>
Description: <?php printAlbumDesc(); ?>
</a>
</div>
</div>
<?php endwhile; ?>
<?php while (next_image()): ?>
<a>" title="<?php printBareImageTitle(); ?>"><?php printImageThumb(getAnnotatedImageTitle()); ?></a>
<?php printImageTitle(); ?>
<?php printImageDate(""); ?>
<?php printImageDesc(); ?>
<?php endwhile; ?>
</div>
`
Maybe related: I can see all folders in that path even though they are not published! I am logged in as the ZP admin but that shouldn't matter should it? I should see them in the ZP admin interface, but not when viewing the gallery.