Hi,
It's implemented like that. But I changed this in my local dev build because the top x does now do have latest comments as well
.
look for the lines
---
if ($image != false && $twg_album != false && !$top10) { // imageview bottom navigation
print_big_navigation($twg_album, $album_enc, $image, $twg_rot, $current_id, $thumb_pic_size, $kwerte, $kindex, $dir);
// twg_shows comments
if ($show_comments) {
---
in the index.php and change it to
--
if ($image != false && $twg_album != false) { // imageview bottom navigation
if (!$top10) {
print_big_navigation($twg_album, $album_enc, $image, $twg_rot, $current_id, $thumb_pic_size, $kwerte, $kindex, $dir);
}
// twg_shows comments
if ($show_comments) {
--
Thats it ...
.
/Michael