Page 1 of 1

Change name on Portal

Posted: 24. December 2010 12:40
by lunapark
Your Portal Version: 1.0.6
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Beginner
Boardlink: http://www.gags.dk

What have you done before the problem was there?


What have you already tryed to solve the problem?
In the menu below overallheader there is a path that shows which page you're on.

F.ex.
Portal >> Boardindeks < Forum1

How do I change theese 2 words, so "Portal" are called "Startpage" and "Boardindeks" are called "Forum" ?


Description and Message
In the menu below overallheader there is a path that shows which page you're on.

F.ex.
Portal >> Boardindeks < Forum1

How do I change theese 2 words, so "Portal" are called "Startpage" and "Boardindeks" are called "Forum" ?

Re: Change name on Portal

Posted: 24. December 2010 13:45
by archivar
Hi,
search in root / language / your language / common.php:

Code: Select all

'FORUM_INDEX'			=> 'Board index',
replace:

Code: Select all

'FORUM_INDEX'			=> 'Forum',
search in root / language / your language / mods / lang_portal.php:

Code: Select all

'PORTAL'				=> 'Portal',
replace:

Code: Select all

'PORTAL'				=> 'Startpage',

Re: Change name on Portal

Posted: 24. December 2010 17:07
by lunapark
Great thanks.