1

Topic: functions

i want to add another link onto the top of the page were you have index, userlist ect...
i know i need to edit functions.php but were bouts do i put it?
i try putting the same code as is there for search but change the target and it does not show up.
im confused of how to do this :\

Re: functions

if you want it to appear for all users add it to this line

1.1.5:
// Home and Userlist should always be displayed
$links .= '<td class="cats_list_line"><a href="index.php">Forums</a></td><td class="cats_list_line"> <a href="userlist.php">'.$lang_common['User list'].'</a></td>';

1.2:
// Index and Userlist should always be displayed
$links[] = '<li><a href="index.php">'.$lang_common['Index'].'</a>';

3 (edited by mark36ph 2005-01-03 22:35)

Re: functions

i cant get it to work, it just puts a | | in but no text

Re: functions

let me guess you put $lang_common['Your Page'] when Your Page is not defined in the language? try putting Your Page instead?