Topic: How do change the word 'Index' in the navigation?

I am introducing a portal page, so now my nav has 2 links: 'Index' and 'Forum'. However, I want to change the word in the nav from 'Index' to 'Home' - how do I do that?

Changing the url a link points to was easy enough, but changing the actual word is harder!

2

Re: How do change the word 'Index' in the navigation?

there are several different solution.
The simple to do is that:
open common.php in your langage pack.
Look for index. Put whatever you want instead. Homepage for example.

Ludo,

Re: How do change the word 'Index' in the navigation?

Whoops - that was too radical. The breadcrumb menu changed too, so now I have

About >> Test forum >> Test post

I need to find how to change the menu only.

4

Re: How do change the word 'Index' in the navigation?

I don't understand what you mean.
Have you got an url to show?
Which default langage do you use in your forum?

Ludo,

5

Re: How do change the word 'Index' in the navigation?

in common.php, not far from the end,
You just have to change:
'Index'                    =>    'Index',

into:
'Index'                    =>    'Home',

Ludo,

Re: How do change the word 'Index' in the navigation?

This is what I mean:

http://randomhawk.com/brain/talk/viewtopic.php?id=1

I need the nav to change, but I want the breadcrumb menu to keep saying Index.

Re: How do change the word 'Index' in the navigation?

You could just add an about link at position 0 using "Additional menu items" in admin/options. That won't get rid of the index link in the nav though. You'll have to remove that manually in include/functions.php in the function generate_navlinks().

"Programming is like sex: one mistake and you have to support it for the rest of your life."

Re: How do change the word 'Index' in the navigation?

Sweet. Works perfectly.
http://randomhawk.com/brain/talk/viewforum.php?id=1