Hello,
Using Zenphoto version 1.4.4.1 [596740f651] (Official build)
zpFocus_ v1.4.4
My search results page does not display the album thumbs or links to the album. A text block shows the number of results, but not albums.
Pages, News, Images all display.
In the options: album matches should be returned. The Zenpage theme search works like I need it to and I have tried to change the Zpfocus search.php without positive results.
This is the album portion of the template used in Zpfocus:
`
<?php if (getNumAlbums() != 0) { ?>
<?php echo gettext('Album Search Results'); ?> (<?php echo getNumAlbums(); ?>)
[list]
<?php $x=1; while (next_album()): $c++;
if( $odd = $x%2 ) {
$css = 'goleft';
} else {
$css = 'goright';
} ?>
<li class="<?php echo $css; ?>">
<a>" title="<?php echo gettext('View Album:'); ?> <?php echo getBareAlbumTitle();?>"><?php echo truncate_string(getBareAlbumTitle(),25,'...'); ?></a>
<a>" title="<?php echo gettext('View Album:'); ?> <?php echo getBareAlbumTitle();?>">
<?php if (isLandscape(true)) {
printCustomAlbumThumbImage(getBareAlbumTitle(),null,160,120,160,120);
} else {
printCustomAlbumThumbImage(getBareAlbumTitle(),null,120,160,120,160);
} ?>
</a>
<?php printAlbumDate(); ?>
<p class="front-desc">
<?php echo truncate_string(getAlbumDesc(), 175); ?>
<a>" title="<?php echo gettext('View album:'); ?> <?php echo getBareAlbumTitle();?>">»</a>
<?php $x=$x+1; endwhile; ?>
[/list]
<?php } ?>
`
Any suggestions would be appreciated. Thank-you!
Renee