Thanks for the help. Yes the version was 1.01. I couldn't find 2.01, the only one I could find 2.07 beta.
Anyway, in case anyone else is looking for the same answers to the question I asked, here is what I found.
1. To get rid of the example text on the index page you have to use the floating admin menu for wf-sections (the one that comes up when you hover the mouse over the image block) and click on "index page management". If you just click on the wf-sections image block in your admin side, the index page option is not displayed on the list of admin features.
2. To get rid of the sub menu options (submit, popular, and rated) displayed in the main menu you have to go to the module/wf-section/xoops_version.php file and about 80 or so lines down you will see
// Menu
$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";
just add // to comment them out. like this
// Menu
$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";
I found this info in this
postI wanted to keep the submit, popular, and rated options but not in the main menu, so I put the links in the index page footer, that I found in answer #1 above. So now under my list of categories there is this.
"Submit an Article | View most Popular | Sort by Rating"
Worked perfect.
Later,
Rob