Topic: Change "Home" Link

I want to change the "Home" link in the forums to go directly back to my main site page.  How can I do that?  I need a full walk-through because I don't know CSS, PHP, or anything.

Re: Change "Home" Link

1) open up your include/functions.php
2) look for the generate_navlinks function.
3) find the home link in there
4) change it to whatever you want it to be
5) save the file
6) upload the file
7) refresh your browser

Indocron
$theQuestion = (2*b) || !(2*b);

Re: Change "Home" Link

Now, I'm trying to add a "Gallery" link beside the home link.  I did what I thought and it didn't work.  Please help!

4

Re: Change "Home" Link

Muddy,

Did you know that in the board description you can use html, so you could add all the links you want without messing with any files.

Re: Change "Home" Link

hcgtv wrote:

Muddy,

Did you know that in the board description you can use html, so you could add all the links you want without messing with any files.

I'm not talking about the board discription.  I'm talking about the links, Home | Userlist | Rules, etc.  How can I add a Gallery link between Home and User list?

Re: Change "Home" Link

Gary13579 wrote:

1) open up your include/functions.php
2) look for the generate_navlinks function.
3) find the XXXX link in there
4) change/add whatever you want
5) save the file
6) upload the file
7) refresh your browser

~James
FluxBB - Less is more

Re: Change "Home" Link

Dr.Jeckyl wrote:
Gary13579 wrote:

1) open up your include/functions.php
2) look for the generate_navlinks function.
3) find the XXXX link in there
4) change/add whatever you want
5) save the file
6) upload the file
7) refresh your browser

Once again, I'm trying to ADD a link, not modify one!

8

Re: Change "Home" Link

?

Yours, Benny.

Re: Change "Home" Link

But that's where you add the link. He said "change/add whatever you want".

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

10

Re: Change "Home" Link

Rickard plz add the Hebrew translate file of 1.1.5 and 1.2 to the site

Yours, Benny.

Re: Change "Home" Link

Benny, stop posting in the wrong tppics give rickard a chance and 1.2 language packs are not being uploaded yet since 1.2 has not been released

12

Re: Change "Home" Link

Can someone modify the functions.php code and post the code here with http://www.offroadoutpost.com/gallery linking to "Gallery", which is a link between "Home" and "User list" links?

Re: Change "Home" Link

find (about line 180):

$links[] = '<a href="index.php">'.$lang_common['Home'].'</a> | <a href="userlist.php">'.$lang_common['User list'].'</a>';

replace with

$links[] = '<a href="index.php">'.$lang_common['Home'].'</a> | <a href="http://www.offroadoutpost.com/gallery">Gallery</a> | <a href="userlist.php">'.$lang_common['User list'].'</a>';

14

Re: Change "Home" Link

Exactly what I was looking for!  Thank you!