]I used this code:
Code:
////////////////////////// FORUMJUMP//////////////////////////////////////
function makefolderjump() {
global $bbuserinfo;
//get all folder names (for dropdown)
//reference with $foldernames[#] .
if ($bbuserinfo[pmfolders]) {
$allfolders = split("\n", trim($bbuserinfo[pmfolders]));
while (list($key,$val)=each($allfolders)) {
$thisfolder = split("\|\|\|", $val);
$folderjump .= "<OPTION value=\"$thisfolder[0]\">$thisfolder[1]</option>";
}
}
return $folderjump;
} #end makefolderjump
$folderjump = makefolderjump(); //make the forum dropdown
makeforumjump(); //make the forum dropdown
////////////////////////// FORUMJUMP//////////////////////////////////////
I know it's lame and have not so much to do with forumjump and it's just magic that it worked, but it showed that forumjump box and go button. The only thing that not worked was "when I choose one or the forums it leads me to
http://www.domain.com/forumdisplay....rune=&forumid=1 (for example) instead of
http://www.domain.com/forum/forumdi...rune=&forumid=1".