Page 1 of 1

How can i change the /admin/index.php header title

Posted: Tue Jan 02, 2007 2:09 pm
by mcktj
Hi guys,

Just wondering how to change the title in the admin area it reads

the standard "CMS Made Simple Admin Panel" i have managed to change the login page title and the logo but i cant see or find out where to change this title, thanks in advance

Terry

Re: How can i change the /admin/index.php header title

Posted: Tue Jan 02, 2007 2:19 pm
by mcktj
found the result i needed

edit the defaultTheme.php and follow the info in this thread

http://forum.cmsmadesimple.org/index.php/topic,7869.0.html

Re: How can i change the /admin/index.php header title

Posted: Tue Jan 02, 2007 2:20 pm
by cyberman
Please make a look at admin/lang/en_US/admin.inc.php - it's the file with the string you are searching for ...

Re: How can i change the /admin/index.php header title

Posted: Tue Jan 02, 2007 2:21 pm
by Dr.CSS
root/admin/lang/en_US admin.include.php, if you use english, line 60...

$lang['admin']['adminpaneltitle'] = 'CMS Made Simple Admin Panel'; // needs translation

You had to pass it to get to lines 194, 195...

$lang['admin']['loginprompt'] = 'Enter a valid user credential to get access to the Admin Panel.'; // needs translation
$lang['admin']['logintitle'] = 'CMS Made Simple Admin Login'; // needs translation

Re: How can i change the /admin/index.php header title

Posted: Tue Jan 02, 2007 2:30 pm
by mcktj
Thanks Guys,

I suppose i had better do it the right way  :P

Not my half assed hack  ;D

Cheers