Im looking to add a 'view your posts' link to my forumhome, similer to phpbb but i've no idea what the correct link should be so i have come up with this /search.php?do=finduser&u=1 but this will only show mine and /search.php?do=finduser&u=$userid doesn't work either. Any help would be appreciated
EDIT: got it sorted and here is a nice thing to add underneath your navbar
its adds links to:
New Posts
Today's Posts
Past Weeks Posts
My Posts
Unanswered Threads
Mark Forums Read
EDIT: got it sorted and here is a nice thing to add underneath your navbar
its adds links to:
New Posts
Today's Posts
Past Weeks Posts
My Posts
Unanswered Threads
Mark Forums Read
PHP:
<!-- post links -->
<br />
<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:1px; border-bottom-width:0px;">
<tr align="center">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew">$vbphrase[new_posts_nav]</a></td>
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily">$vbphrase[todays_posts]</a></td>
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily&days=7">Past Weeks Posts</a></td>
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=finduser&u=$bbuserinfo[userid]">My Posts</a></td>
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=process&replyless=1&replylimit=0&dontcache=1">Unanswered Threads</a></td>
<td class="vbmenu_control"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td>
</tr>
</table>
</div>
<!-- / post links -->