[Solved]: Showing #of Views Under Title [Solved]: Showing #of Views Under Title
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

[Solved]: Showing #of Views Under Title

Started by blazer380, August 11, 2004, 07:31:36 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

blazer380

How can I change so that the # of Views is listed under the Title? Right now it looks like this:

QuoteBenny Benassi - Satisfaction
(Original Mix) - 14 views

How can I change it to make sure there is a <BR > after Title so it looks like:

QuoteBenny Benassi - Satisfaction
(Original Mix)
               14 views

Joachim Müller

edit include/functions.inc.php, find            if ($CONFIG['views_in_thumbview']){
               if ($rowset[$key]['title']){$caption .= "&nbsp;&ndash;&nbsp;";}
            $caption .= sprintf($lang_get_pic_data['n_views'], $rowset[$key]['hits']);
            }
                 $caption .= "</span>";
and add a <br /> tag, so it looks like this:            if ($CONFIG['views_in_thumbview']){
               if ($rowset[$key]['title']){$caption .= "<br />";}
            $caption .= sprintf($lang_get_pic_data['n_views'], $rowset[$key]['hits']);
            }
                 $caption .= "</span>";

HTH

GauGau

blazer380

thank you very much, works great!!!