Quote:
|
Originally Posted by omegatron We are talking about adding links via your header html file you created if any
The Photopost menubar is defined in pp-inc.php under the topmenu function. If your trying to add links to the photopost menubar this is in the actual php code as that is not a template. Although you could just add a html tag in the menubar template quite easily |
okay here's the appropriate code in the pp-inc.php that I think you're referring to:
$menu .= "<a href=\"{$Globals['maindir']}/adm-index.php\">{$Globals['pp_lang']['admin']}</a> | <a href=\"{$Globals['maindir']}/index.php\">{$Globals['pp_lang']['home']}</a>";
$menu .= " | <a href=\"{$Globals['maindir']}/search.php?cat=$cat\">{$Globals['pp_lang']['search']}</a>";
}
else {
$menu .= "<a href=\"{$Globals['maindir']}/index.php\">{$Globals['pp_lang']['home']}</a>";
$menu .= " | <a href=\"{$Globals['maindir']}/search.php\">{$Globals['pp_lang']['search']}</a>";
I want to add a link to sgtmajsbunker.com/index.php and for the link to be labeled SgtMaj's Bunker.
would you add it for me in this code? thank you.