I want to add a second custom link into the menu,(Fruity Theme) but the link is showing twice in the menu.
how can I make it to show only once?
This is the code I'm using. Google is a test only:
// HTML template for main menu
$template_sys_menu = <<<EOT
<div class="topmenu">
{BUTTONS}
<a href="http://www.google.com" title="Search Google">Google</a>
</div>
EOT;
// HTML template for template sys_menu spacer
$template_sys_menu_spacer ='';
?>
This has been asked many times so give it a search and you'll find all kinds of goodies. You can start with this link (http://forum.coppermine-gallery.net/index.php/topic,35055.msg175620.html#msg175620) since it may depend on the theme your using or creating.
I found out the problem of double link even though I entered a code for one link
I added this code before $template_sys_menu = <<<EOT:
$template_sub_menu = <<<EOT
<div class="topmenu">
{BUTTONS}
<a href="forum URL">Forum </a>
</div>
EOT;
so, the total code will be:
// HTML template for main menu
$template_sub_menu = <<<EOT
<div class="topmenu">
{BUTTONS}
<a href="forum URL">Forum </a>
</div>
EOT;
$template_sys_menu = <<<EOT
<div class="topmenu">
<a href="http://www.familiafernandes.ne" title="FamilaFernandes.net">Fernandes Site</a>
{BUTTONS}
</div>
EOT;
// HTML template for template sys_menu spacer
$template_sys_menu_spacer ='';
?>