MyBB Community Forums

Full Version: Forumjump in header_welcomeblock_member
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello

I want to put the "forumjump box" in "header_welcomeblock_member".

And the width of "forumjump box" must be at most 200px.

How can I do this?

Thank you.
in global.php above

// Tell the user their PM usage

add

$forumjump2 = build_forum_jump("", "", 1);
$forumjump = "";

And in header_welcomeblock_member add
{$forumjump2}
Thank you very much, but I found a problem.

With the code you wrote, there is NO problem in INDEX.php page.

But in FORUMDISPLAY page and SHOWTHREAD page, the forumjump box in header_welcomeblock_member conflicts the forumjump boxes in FORUMDISPLAY and SHOWTHREAD pages. Shows up a lot of forumjump boxes at the bottom on forumdisplay and showthread pages.

Can you fix this please?

(And if you don't mind, can the width of forumjump box be at most 200px?)
I have add a line to the code. Updated the previous post. redo it as it is.
Changing it to 200px should be done in the template. therefore will affect other places.
Thank you so much.