Hi @all
I hope someone can help with following requirement:
in one special single list_page I wanna limit the amount of menu items ( from regular 5 items to one item left, means I wanna hide 4 items )
Menu item: Modify ( PHPR 6.0 b9948 )
if ( page == 'anypage_list.php' ) // this line is the problem
{
$title = $menuItem->getTitle();
if ($title=="menu item 1" or $title=="menu item 2" or $title=="menu item 3" or $title=="menu item 4")
return false;
}
return true;
Nothing like if getUrl() , getTable() , getTitle() is working how I expect.
Greetings Michael