Log in

View Full Version : nav_link issue


Spiffware
12-07-2006, 01:44 AM
im trying to add a new page to my nav bar i did that fine the first lines of my templet looks like this:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>Site News</title>
</head>
<body>
$header
$navbar
but i dont get the link back to the forum home like the rest of the pages have. what am i missing?
and this is my php file i guess i can make it not a php file and direct it to a hook of some sort like one that uses misc.php?do=site_news or something
<?php


require_once('./global.php');

eval('print_output("' . fetch_template('site_news') . '");');




?>
is my php file.

Adrian Schneider
12-07-2006, 02:50 AM
Here is a tutorial for that,
https://vborg.vbsupport.ru/showthread.php?t=98009

Spiffware
12-07-2006, 09:34 AM
great it worked thanks alot.