Flipping the contents of <TITLE> Flipping the contents of <TITLE>
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Flipping the contents of <TITLE>

Started by daiello, January 05, 2005, 06:21:27 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

daiello

I want to change the title of the pages of a Coppermine Photo Gallery server I'm working on so that the elements of it are reversed.  Instead of:

gallery_name - Home

I want:

Home - gallery_name

I found the pageheader function in theme.php and modified $template_vars as follows:

    $template_vars = array('{LANG_DIR}' => $lang_text_dir,
        '{TITLE}' => $section . ' - ' . $CONFIG['gallery_name'],
        '{CHARSET}' => $CONFIG['charset'] == 'language file' ? $lang_charset : $CONFIG['charset'],
        '{META}' => $meta,
        '{GAL_NAME}' => $CONFIG['gallery_name'],
        '{GAL_DESCRIPTION}' => $CONFIG['gallery_description'],
        '{MAIN_MENU}' => theme_main_menu(),
        '{ADMIN_MENU}' => theme_admin_mode_menu(),
        );


Note that the components of the {TITLE} line are reversed around the dash.

I saved and uploaded the changes to my server, but the pages continue to display with the components of the title in the original order.  Have I missed something?

Thanks--

Dave Aiello

donnoman

Your mod works fine on my install.

Are you sure you got your modified theme.php into the right place on your ftp server?

it should be in: themes/<themename>/theme.php

Are you sure you had the right theme selected that you did the mod to?

nukeworker

Sorry to dig up old bones, but I wanted to thank daiello for sharing this with us, it really helped me today.