As stated I would prefer to have it on the album page. Could you paste your code here so I could try that? In the mean time here is my code
`
<?php if (getOption('show_meta')) { ?>
<a><?php echo gettext('Image Meta Data'); ?></a>
<?php printImageMetadata( "",false,"exif","",true,"",true ); ?>
<?php } ?>
<?php if (function_exists('printRating')) { ?>
<?php printRating(); ?>
<noscript>Sorry, you must enable Javascript in your browser in order to vote...</noscript>
<?php } ?>
:
<?php if (function_exists('zenFBLike')) zenFBLike(); ?>
<?php if ((function_exists('printCommentForm')) && (openedForComments()) ) { ?>
<a><?php echo gettext('Comments'); ?> (<?php echo getCommentCount(); ?>)</a>
<?php } ?>
<?php if ((function_exists('printCommentForm')) && (openedForComments()) ) { ?>
<div id="comment-wrap" class="fader clearfix">
<?php printCommentForm(); ?>
<?php } ?>
</div>
<?php include("footer.php"); ?>
```