forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Miscellaneous => Topic started by: blazer380 on August 11, 2004, 07:31:36 pm

Title: [Solved]: Showing #of Views Under Title
Post by: blazer380 on August 11, 2004, 07:31:36 pm
How can I change so that the # of Views is listed under the Title? Right now it looks like this:

Quote
Benny Benassi - Satisfaction
(Original Mix) - 14 views

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

Quote
Benny Benassi - Satisfaction
(Original Mix)
                14 views
Title: Re: Showing #of Views Under Title
Post by: Joachim Müller on August 12, 2004, 05:40:07 am
edit include/functions.inc.php, find
Code: [Select]
            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:
Code: [Select]
            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
Title: Re: Showing #of Views Under Title
Post by: blazer380 on August 12, 2004, 05:55:54 pm
thank you very much, works great!!!
Title: Re: [Solved]: Showing #of Views Under Title
Post by: nukeworker on November 26, 2005, 03:10:27 am
Thanks.