removing the "more" menu dropdown from the topbar

LoL, sori guys, im a renegade, self-taught web person, and i removed the "more" menu item from the Elgg topbar, since i could not find a working plugin for 1.9
i present this finding here for attack by more experienced and qualified programmers... thanks

navigate to the file:

    /var/www/html/aaELGG/views/default/navigation/menu/site.php

backup your file, and delete this:

    if ($more_items) {
        echo '<li class="elgg-more">';

        $more = elgg_echo('more');
        echo "<a href=\"#\">$more</a>";
    
        echo elgg_view('navigation/menu/elements/section', array(
            'class' => 'elgg-menu elgg-menu-site elgg-menu-site-more',
            'items' => $more_items,
        ));
    
        echo '</li>';
    }


obviously this will limit your topbar menu items to no more than 6 items, as governed in admins by Configure > Appearance > Menu Items

This solution is working for me, as it could do for others.

Thank you to the Elgg and everyone who writes and supports it!