2
Go to modules/wfsection/xooops_version.php
and look for these lines:
$modversion['hasMain'] = 1;
$modversion['sub'][1]['name'] = _MI_WFS_SUBMIT;
$modversion['sub'][1]['url'] = "submit.php";
$modversion['sub'][2]['name'] = _MI_WFS_POPULAR;
$modversion['sub'][2]['url'] = "topten.php?counter=1";
$modversion['sub'][3]['name'] = _MI_WFS_RATEFILE;
$modversion['sub'][3]['url'] = "topten.php?rate=1";
taking out these lines should do it:
$modversion['sub'][1]['name'] = _MI_WFS_SUBMIT;
$modversion['sub'][1]['url'] = "submit.php";
$modversion['sub'][2]['name'] = _MI_WFS_POPULAR;
$modversion['sub'][2]['url'] = "topten.php?counter=1";
$modversion['sub'][3]['name'] = _MI_WFS_RATEFILE;
$modversion['sub'][3]['url'] = "topten.php?rate=1";
this line includeds wfsection in main menu:
$modversion['hasMain'] = 1;