Ok ! So you are talking about that when you View an Album, it shows No. of comments and Ratings below each Thumbnail.... Am I right ?
For that edit the same file and Search for :
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false] $photo_comments = dbcount("(comment_id)", DB_COMMENTS, "comment_type='P' AND comment_item_id='".$data['photo_id']."'"
;
echo ($photo_comments == 1 ? $locale['436b'] : $locale['436']).$photo_comments."<br />\n";
echo $locale['437'].($data['count_votes'] > 0 ? str_repeat("<img src='".get_image("star"
."' alt='*' style='vertical-align:middle' />", ceil($data['sum_rating'] / $data['count_votes'])) : $locale['438'])."<br />\n";[/syntaxhighlighter]
Just Comment them :
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]// $photo_comments = dbcount("(comment_id)", DB_COMMENTS, "comment_type='P' AND comment_item_id='".$data['photo_id']."'"
;
// echo ($photo_comments == 1 ? $locale['436b'] : $locale['436']).$photo_comments."<br />\n";
// echo $locale['437'].($data['count_votes'] > 0 ? str_repeat("<img src='".get_image("star"
."' alt='*' style='vertical-align:middle' />", ceil($data['sum_rating'] / $data['count_votes'])) : $locale['438'])."<br />\n";[/syntaxhighlighter]