Quote:
Originally Posted by NPGamers.Net
How do you change the name "Forms" in the NAV BAR ?
I know you would go to Plugin Manager in AdminCP and then process_template_complete and i see the line - $template_hook['navbar_quick_links_menu_pos4'] .= '<li><a href="misc.php?'.$session['sessionurl_q'].'do=forms">'.$vbphrase['forms'].'</a></li>';
But instead of using a <a href="">FORMS</a> some $vbphrase junk was used taking it past my ability to change the name of the nav bar button.
how can i convert it to a simple link / name or what?
|
PHP Code:
$template_hook['navbar_quick_links_menu_pos4'] .= '<li><a href="misc.php?'.$session['sessionurl_q'].'do=forms">Your Text Here!!!</a></li>';
Or...
Quote:
Originally Posted by Za4a Tuner
Go to your AdminCP (languages) and Search for the phrase "forms" and change it to what you would have to
|