4
Working on it :)
please remember to backup the file before editing!I don´t have a 1.04 version here to verify so this might not be exactly the same on your version.
check
xoops_version.php in your wfsection directory:
Look out for:
$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";
and comment it out like this:
//$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";
This will take care of the 'Popular' and 'Rated' entries.
There should be some if ... section some lines before that which includes two times:
$modversion['sub'][$i + 1]['name'] = _MI_WFS_SUBMIT;
$modversion['sub'][$i + 1]['url'] = "submit.php";
same here ... change it for both into:
//$modversion['sub'][$i + 1]['name'] = _MI_WFS_SUBMIT;
//$modversion['sub'][$i + 1]['url'] = "submit.php";
So it will take care of the submit link.
Hope it works for you.