• Welcome to ForumKorner!
    Join today and become a part of the community.

[MyBB] Adding "View New Posts" and "View Today's Posts" in Forum Jump List

Bond

User is banned.
Reputation
0
This will add two more options "View New Posts" and "View Today's Posts" in your Forum Jump list.

Open your forumdisplay.php and locate the following code near about line 49 - 51

Code:
case "-5":
$location = "online.php";
break;

Now add just after that:

Code:
case "-6":
$location = "search.php?action=getnew";
break;

case "-7":
$location = "search.php?action=getdaily";
break;

Save your 'forumdisplay.php'.

Now open the template:
Forum Jump Templates > forumjump_advanced

find the line:

Code:
<option value="-1">{$lang->forumjump_home}</option>

Add just after that:

Code:
<option value="-6">{$lang->welcome_newposts}</option>
<option value="-7">{$lang->welcome_todaysposts}</option>

Save the template. You are done. Now you have "View New Posts" and "View Today's Posts" in your Forum Jump Dropdown list.

8QppvoZ.png




Credits to : effone (MyBB)
 
Top