How Can i set Forum Title.
Coz when ever i login i see that index page title shows. index Page.
Forum Title
Forum rules
Temporary forum to obtain support while phpBB.com is offline.
Please use the support forum on phpBB.com
Temporary forum to obtain support while phpBB.com is offline.
Please use the support forum on phpBB.com
Re: Forum Title
In the overall_header.html in template folder of your style
there must be
Here you can modify if but keep that if you modify it you will lose page titles for different pages
better to use the default one
there must be
Code: Select all
<title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title>
better to use the default one
lost in area 51
-
- Registered User
- Posts: 13
- Joined: Tue May 22, 2007 12:10 am
Re: Forum Title
Alternatively, you can edit index.php itself if you want to change the title for only the index page.
Can become
(note that it will remain the same for all languages)
If you use any apostrophes (') escape it using a backslash (so it becomes \')
Code: Select all
// Output page
page_header($user->lang['INDEX']);
Code: Select all
// Output page
page_header('Forum home');
If you use any apostrophes (') escape it using a backslash (so it becomes \')
Re: Forum Title
go to your ACP/Style/Templates/ hit "edit" choose "overall_header.html" find the line showing in the image attached in this thread and change the red mark indicated in the image with your "Site Name"Khamosh-Saya wrote:How Can i set Forum Title.
Coz when ever i login i see that index page title shows. index Page.
- COD3M4ST3R-X
- Registered User
- Posts: 228
- Joined: Wed Nov 05, 2008 7:52 am
- Location: Lahore,Pakistan
- Contact:
Re: Forum Title
Just to make things simple and easy.
Open:Language/en/common.php
Find:
In-line Find:
Change it according to your needs.
E.g.
Open:Language/en/common.php
Find:
Code: Select all
'INDEX' => 'Index page',
Code: Select all
Index page
E.g.
Code: Select all
'INDEX' => 'My Forum',
Long Live PhpBB!
-
- Registered User
- Posts: 23
- Joined: Mon Feb 02, 2009 7:23 am
Re: Forum Title
i m confused
Which is better
what i tried??
Which is better
what i tried??
-
- Registered User
- Posts: 13
- Joined: Tue May 22, 2007 12:10 am
Re: Forum Title
The last way is the best if you want 'index page' to be completely renamed to something else.Khamosh-Saya wrote:i m confused
Which is better
what i tried??
Second way is the best if you want only to change 'index page' to something else as it appears on index.php, and if you want it to say that for all languages.
Or, just choose one at random if you're unsure. I don't suggest doing the template edits, as that would effect a change for all pages.
-
- Registered User
- Posts: 23
- Joined: Mon Feb 02, 2009 7:23 am
Re: Forum Title
Thanks
now i will try
now i will try