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

News:

CPG Release 1.6.28
added submissions from {406man}
cleaned up a few PHP (8.4) deprecations
fixed PHP deprecation in calendar
removed security vulnerability
(please upgrade when possible)

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