2
I use wfsections. This question was asked on the WF-Sections site in their old forums (their site has been redesigned and now you have to search their old forums and their new forums for answers because they didn't migrate all the data).
Their answer, however, removed
all of the submenu items. You only want to remove the non-submission ones.
Try this: in the xoops_version.php file (line 55 in 2.0.1):
/*
$modversion['sub'][$i + 2]['name'] = _MI_WFS_POPULAR;
$modversion['sub'][$i + 2]['url'] = "topten.php?counter=1";
$modversion['sub'][$i + 3]['name'] = _MI_WFS_RATEFILE;
$modversion['sub'][$i + 3]['url'] = "topten.php?rate=1";
$modversion['sub'][$i + 4]['name'] = _MI_WFS_ARCHIVE;
$modversion['sub'][$i + 4]['url'] = "archive.php";
*/
Some menu items are dynamically pulled from the database, so you have to either modify the code or remove the data from the database. However, the ones that you specify are not pulled from the database.
Hope that helps.