If on the index page (in the albums loop ( <?php while (next_album()): ?> ) I want to display the hitcounter for each of the albums I list,
Viewed <?php echo hitcounter("album"); ?> times
doesn't work, right ? It displays not the context album but the parent (root album in this case). Any other way to do it ?
Comments
`$count = hitcounter('album', true, $album->getAlbumID());` where `$album` is the album for which you want the count.