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

News:

CPG Release 1.6.29
During HTML5 upload, keep pseudo blank code 200 messages from triggering error condition
added Russian language
correct failure to use theme menu icons in album manager
minor vulnerabilities mitigation

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;
}