Hi, I want to hide the number of votes which appear below the thumbnails in one of my albums ONLY. Is there a way to implement the code which will set limit to display the voting below the thumbnail according to the album_id?
Open include/functions.inc.php, find
if ($CONFIG['display_thumbnail_rating'] == 1) {
and replace with
if ($CONFIG['display_thumbnail_rating'] == 1 && $album != 3) {
if you want to hide it for the album with the ID '3'.
Topic has been solved. Thank you, Andre.