forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: kingspice on August 08, 2011, 01:35:37 pm

Title: Title Display on Pictures & Albums Pages
Post by: kingspice on August 08, 2011, 01:35:37 pm
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
Title: Re: Title Display on Pictures & Albums Pages
Post by: Αndré on August 10, 2011, 05:30:16 pm
Copy that to your theme's theme.php file:
Code: [Select]
function theme_page_title($section)
{
    global $CONFIG;
    $return = strip_tags(bb_decode($section));
    return $return;
}