forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: marecki on October 24, 2008, 12:00:41 pm

Title: Modify page title for index.php
Post by: marecki on October 24, 2008, 12:00:41 pm
When index.php display category index, the page title is "Gallery Name - Category Name". And that is correct.
But when index.php display main page of gallery, the page title is "Gallery Name - HOME PAGE". This title is also indexed by Google and it look very bad for me :(

How to remove text "- HOME PAGE" when index.php display main page?
Title: Re: Modify page title for index.php
Post by: Joachim Müller on October 25, 2008, 12:05:37 pm
To just change the wording, edit the language file (i.e. lang/english.php) with a plain text editor and find
Code: [Select]
$lang_list_categories = array(
  'home' => 'Home',
and edit as you see fit. You might change it to
Code: [Select]
$lang_list_categories = array(
  'home' => 'Gallery overview',
or similar.