In using the Highslide theme, I've set the admin option to turn on the Rating Function but I'm not clear as to which PHP file I need to put the printRating() call in to get the rating input from the user. I thought it might be the full-image.php file but after looking at it, I don't think so.
Comments
I recommend also to read the theming tutorial.
image.php code
<div id="image">
" title="<?php echo getImageTitle();?>">
<?php printDefaultSizedImage(getImageTitle());?>
<?php printRating();?>
</div>
album.php code
<div class="imagethumb">
" class="highslide" onclick="return hs.expand(this)" title="<?=getImageTitle();?>">
<?php printImageThumb(getImageTitle());?>
<?php printRating();?>
<p><? echo $i; ?></p>
<div class="highslide-caption">
<?=getImageTitle();?>
" class="lightbox_quote_button">Request Quote</div>
</div>
</div>
Does that quite old theme use image.php at all? The rating plugin of course needs to be activated, too.
`
<?php printRating();?>
`
I was trying to output the rating info using the <div id="image> tag.
I'll now have to work on displaying the rating info smaller as it overwhelms the images and other info on the album page.