Title Display on Pictures & Albums Pages Title Display on Pictures & Albums Pages
 

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

Title Display on Pictures & Albums Pages

Started by kingspice, August 08, 2011, 01:35:37 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

kingspice

Hi,
I would like to change the format of the title for pictures and albums page, such that the main site title is not added to the end of the title.

e.g. Album Name/Picture Title
as opposed to:
Album Name/Picture Title - Your Gallery

ΑndrĂ©

Copy that to your theme's theme.php file:
function theme_page_title($section)
{
    global $CONFIG;
    $return = strip_tags(bb_decode($section));
    return $return;
}