Hello i have a problem when i add a custom menu item using Menu_Renderingif i put an custom item to menu the navbar custom menu are no show, just are show the menus that appear first in codeif ($menu->Id == “navbar”) { // Sidebar menu or change from “menu” to “navbar” for top menu
$menu->addMenuItem(10009, “candi”, ‘
’.$appli.'
' , "applicantslist.php", -1, "", IsLoggedIn());}if ($menu->Id == "menu") { // Sidebar menu or change from "menu" to "navbar" for top menu
$menu->addMenuItem(100, "xxx", '
Hello now i figured out and work, but i have a another problem, the font type that is show in menu text is different to the defaults menus, my code look as:if ($menu->Id == “menu”) { // Sidebar menu or change from “menu” to “navbar” for top menu
$menu->addMenuItem(10000, “MyName”, ‘
Client Birthdays ’.$clientbirthdays.'
', "MyPage.php", -1, "", IsLoggedIn());
$menu->moveItem("MyMenuText", $menu->Count() -5); // Move to last
}