Your Portal Version: 1.0.2RC3
Your phpBB Type: Premodded phpBB
MODs installed: Yes
Your knowledge: Basic Knowledge
Boardlink: http://dv-efs.com
PHP Version: 4
What have you done before the problem was there?
What have you already tryed to solve the problem?
tried chaning it in portal.php, when i cleared cache and went back to portal page it loaded, but at the very top i got errors. Something along the lines of the title being called in includes/functions.php already
Description and Message
Hello,
Im trying to change the titles of both my portal page and my gallery page (i installed gallery mod from this site). I have changed the titles on other pages by editing the root php file that belongs to the page, but when i tried it this time on portal.php i got an error and it did not put the text in i wanted for the title.
I could use some help with this please, thanks.
How do you change the portal page title
Forum rules
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Re: How do you change the portal page title
I know i have been asking alot of questions, but its only because i care. So, when i find the answer to my own question i intend on comming here to provide the answer in case others have the same concerns.
I figured out how to change the title of the portal page.
open portal.php
Find
Replace with
'Your title Here' can be any text you want for the title. It must be surrounded by single quotes.
This edit will change the title at the top of the browser window, but will not change the name "portal" in your navigation bar.
I figured out how to change the title of the portal page.
open portal.php
Find
Code: Select all
page_header($user->lang['PORTAL']);
Code: Select all
page_header('Your title Here');
This edit will change the title at the top of the browser window, but will not change the name "portal" in your navigation bar.
Re: How do you change the portal page title
that's great,
Re: How do you change the portal page title
Is there a way to change the word "portal" in the navi bar to "Home"?
Re: How do you change the portal page title
Good question, afraid i have only a partial answer. When i was playing with this i accidently changed that, but it affects both the title and the title in navi bar.dragz wrote:Is there a way to change the word "portal" in the navi bar to "Home"?
Find
Code: Select all
page_header($user->lang['PORTAL']);
Code: Select all
page_header($user->lang['Your Stuff Here']);
Im not sure how to independantly change both your navi title and the page title.
-
- Active Member
- Posts: 7
- Joined: 26. January 2009 04:09
- phpBB.com User: Blind Dragon
Re: How do you change the portal page title
hmm, I would think that you could edit (to change independently):
/language/en/mods/lang_portal.php
Find:
Replace with:
/language/en/mods/lang_portal.php
Find:
Code: Select all
'PORTAL' => 'Portal',
Code: Select all
'PORTAL' => 'Your title here',