coppermine-gallery.com/forum

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: mr.bena on April 08, 2012, 01:53:57 AM

Title: Hide votes below thumbnails for one album
Post by: mr.bena on April 08, 2012, 01:53:57 AM
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?


Title: Re: Hide votes below thumbnails for one album
Post by: ΑndrĂ© on April 12, 2012, 09:24:48 AM
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'.
Title: Re: Hide votes below thumbnails for one album
Post by: mr.bena on April 12, 2012, 01:51:12 PM
Topic has been solved. Thank you, Andre.