Yes you can, because I've done it.
Do this:
1) Open the template "forumjump", and find:
Code:
<option value="search" $frmjmpsel[search]>Search Forums</option>
<option value="home" $frmjmpsel[home]>Forums Home</option>
Underneath, ADD:
Code:
<option value="getnp" $frmjmpsel[getnp]>Get New Posts</option>
<option value="gettp" $frmjmpsel[gettp]>Get Past 24hr Posts</option>
2) Then, edit forumdisplay.php
Find:
PHP Code:
case 'home': $goto = 'index'; break;
case 'search': $goto = 'search'; break;
Below, ADD:
PHP Code:
case 'getnp': $goto = 'search'; $goto2='?action=getnew'; break;
case 'gettp': $goto = 'search'; $goto2='?action=getdaily'; break;
3) Then in the same file, find:
PHP Code:
header("Location: $goto.php?s=$sessionhash");
REPLACE with:
PHP Code:
header("Location: $goto.php$goto2");
Done!