Modify page title for index.php Modify page title for index.php
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Modify page title for index.php

Started by marecki, October 24, 2008, 12:00:41 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

marecki

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?

Joachim Müller

To just change the wording, edit the language file (i.e. lang/english.php) with a plain text editor and find$lang_list_categories = array(
  'home' => 'Home',
and edit as you see fit. You might change it to$lang_list_categories = array(
  'home' => 'Gallery overview',
or similar.