forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: Stefpink on November 30, 2008, 10:51:31 pm

Title: Name picture on title / voting tables
Post by: Stefpink on November 30, 2008, 10:51:31 pm
I would delete these options, the view of the picture's name on main page title and the tables for voting the picture
Title: Re: Name picture on title / voting tables
Post by: Nibbler on November 30, 2008, 11:10:55 pm
You can just disable rating on the groups page or album properties.

For the page title you can edit displayimage.php

Code: [Select]
pageheader($album_name . '/' . $picture_title, $meta_keywords, false);
Change to

Code: [Select]
pageheader($album_name, $meta_keywords, false);
That will leave you with duplicate page titles, which is not really a good idea.
Title: Re: Name picture on title / voting tables
Post by: Stefpink on November 30, 2008, 11:36:39 pm
Thank you very much  :)