coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: garyafarmer on October 24, 2006, 11:59:58 AM

Title: Change Homepage title
Post by: garyafarmer on October 24, 2006, 11:59:58 AM
I am trying to remove "Home -" from the home page title (index.php) and replace with custom text. If I change it in the english.php file it also changes the word "Home" in the Breadcrumbs.

Can this be done and if so how?

If I can't remove "Home -" is there a way to add additional text infront of it without it affecting the Breadcrumbs? This text would need to only display on the index.php file.

Thank you in advance
Title: Re: Change Homepage title
Post by: Gizmo on October 24, 2006, 03:29:45 PM
Here's what I was able to come up with. Copy the function pageheader from the themes=>sample=>theme.php and paste into your theme.php file before the ?>.


// Function for writing a pageheader
function pageheader($section, $meta = '')
{
    global $CONFIG, $THEME_DIR;
    global $template_header, $lang_charset, $lang_text_dir;

    $custom_header = cpg_get_custom_include($CONFIG['custom_header_path']);

        $charset = ($CONFIG['charset'] == 'language file') ? $lang_charset : $CONFIG['charset'];

    header('P3P: CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"');
        header("Content-Type: text/html; charset=$charset");
    user_save_profile();

    $template_vars = array('{LANG_DIR}' => $lang_text_dir,
        '{TITLE}' => $CONFIG['gallery_name'] . ' - ' . strip_tags(bb_decode($section)),
        '{CHARSET}' => $charset,
        '{META}' => $meta,
        '{GAL_NAME}' => $CONFIG['gallery_name'],
        '{GAL_DESCRIPTION}' => $CONFIG['gallery_description'],
        '{SYS_MENU}' => theme_main_menu('sys_menu'),
        '{SUB_MENU}' => theme_main_menu('sub_menu'),
        '{ADMIN_MENU}' => theme_admin_mode_menu(),
        '{CUSTOM_HEADER}' => $custom_header,
        );

    echo template_eval($template_header, $template_vars);
}


Before this line:
    $template_vars = array('{LANG_DIR}' => $lang_text_dir,

add

    if ((defined('INDEX_PHP')) && (empty($_GET['cat'])) && (empty($_GET['album']))) {
    $new_title = "add new title here";
    } else {
$new_title = $CONFIG['gallery_name'] . ' - ' . strip_tags(bb_decode($section)); 
}


Change this line:
        '{TITLE}' => $CONFIG['gallery_name'] . ' - ' . strip_tags(bb_decode($section)),

to this
        '{TITLE}' => $new_title,

You will need to change add new title here to suit your needs.
Title: Re: Change Homepage title
Post by: garyafarmer on October 24, 2006, 09:19:21 PM
Worked perfectly - Thank you
Title: Re: Change Homepage title
Post by: juliub on May 26, 2007, 01:03:58 PM
Gizmo,

the mod works fine, but when I open the intermediate page picture with the static link, it gives me the same title of the home page, instead of the picture title.

JuliuB
Title: Re: Change Homepage title
Post by: juliub on May 29, 2007, 06:05:00 PM
I solved. In the code above, I changed

THIS:  if ((defined('INDEX_PHP')) && (empty($_GET['cat'])) && (empty($_GET['album']))) {


with THIS:
  if ((defined('INDEX_PHP')) && (empty($_GET['pos'])) && (empty($_GET['cat'])) && (empty($_GET['album']))) {


Now the static file has the rigth title.

It works now, I hope I didn't anything wrong.  ???