/*======================================================================*\
|| #################################################################### ||
|| # My Posts 2.0 - Template modification - Created by dutchbb        # ||
|| # ---------------------------------------------------------------- # ||
|| # Copyright 2002-2009 DutchBodybuilding.com. All Rights Reserved. # ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------------------------------------------------------- # ||
|| # http://forum.dutchbodybuilding.com                               # ||
|| #################################################################### ||
\*======================================================================*/


What it does: adds a "My Posts" link to the navbar with a dropdown to find your latest personal threads and posts and also topics you have posted in. See screenshot.

======================================================================================

In 'navbar' template:

FIND THE FIRST INSTANCE OF:
-----

<if condition="$show['member']">
				<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>

BELOW ADD:
----------

<!-- START MY POSTS LINK -->
<td class="vbmenu_control"> <span id="navbar_myposts"><a href="search.php?do=finduser&u=$bbuserinfo[userid]" accesskey="2">My Posts</a> <script type="text/javascript"> vbmenu_register("navbar_myposts"); </script></span></td>
<!-- END MY POSTS LINK -->

FIND:
-----

	</if>
<!-- / NAVBAR POPUP MENUS -->

ABOVE ADD:
----------

<!-- START MY POSTS MENU -->
<div class="vbmenu_popup" id="navbar_myposts_menu" style="display:none">
		<table cellpadding="4" cellspacing="1" border="0">
		<tr>
		<td class="thead">My Posts</td>
		</tr>
		<tr>
		<td class="vbmenu_option"><a href="search.php?do=finduser&u=$bbuserinfo[userid]">My Posts</a></td>	
		</tr>
		<tr>
		<td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Active Threads</a></td>	
		</tr>
		<tr>
		<td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=0&exactname=1&searchuser=$bbuserinfo[username]">Threads I Posted In</a></td>	
		</tr>
		</table>
	</div>
<!-- END MY POSTS MENU -->


DONE!