If you use Zoints Local you need to weak a few things to make this work. I apologize if I am speaking out of turn and if so please delete this post.
This is what i did
find
Code:
<tr><td class="$navclass[profile]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20"><img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/user_edit.png" width="16" height="16"></td>
<td><a class="smallfont" href="profile.php?$session[sessionurl]do=editprofile">
$vbphrase[edit_your_details]</a></td>
</tr>
</table>
</td></tr>
right below that add this
Code:
<!-- Zoints Edit Start -->
<tr><td class="$navclass[options]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20">
<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/user_edit.png" width="16" height="16"></td>
<td>
<a class="smallfont" href="$vboptions[zointsprofile_zurl]?id=$bbuserinfo[userid]">Edit Profile</a></td>
</tr>
</table>
</td></tr>
<tr><td class="$navclass[options]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20">
<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/group.png" width="16" height="16"></td>
<td>
<a class="smallfont" href="$vboptions[zointsprofile_zurl]?id=$bbuserinfo[userid]&g=contacts">Your Network</a></td>
</tr>
</table>
</td></tr>
<tr><td class="$navclass[options]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20">
<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/picture_edit.png" width="16" height="16"></td>
<td>
<a class="smallfont" href="$vboptions[zointsprofile_zurl]?id=$bbuserinfo[userid]&g=privacy">Edit Profile Privacy</a></td>
</tr>
</table>
</td></tr>
<tr><td class="$navclass[options]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20">
<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/blocked_members.png" width="16" height="16"></td>
<td>
<a class="smallfont" href="$vboptions[zointsprofile_zurl]/z.php?cmd=blocked">Blocked Members</a></td>
</tr>
</table>
</td></tr>
<tr><td class="$navclass[options]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20">
<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/vcard_edit.png" width="16" height="16"></td>
<td>
<a class="smallfont" href="$vboptions[zointsprofile_zurl]/z.php?cmd=notification-preferences">Edit Profile Notifications</a></td>
</tr>
</table>
</td></tr>
<!-- Zoints Edit End-->
Then i reccomend commenting out the the old profile settings so you can reset it if you need it later
Code:
<!-- <if condition="$show['customizelink']">
<tr><td class="$navclass[customize]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20">
<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/vcard_edit.png" width="16" height="16"></td>
<td>
<a class="smallfont" href="profile.php?$session[sessionurl]do=customize">
$vbphrase[customize_profile]</a></td>
</tr>
</table>
</td></tr>
</if>
<if condition="$show['profilepiclink']">
<tr><td class="$navclass[profilepic]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20">
<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/picture_edit.png" width="16" height="16"></td>
<td><a class="smallfont" href="profile.php?$session[sessionurl]do=editprofilepic">$vbphrase[edit_profile_picture]</a></td>
</tr>
</table>
</td></tr>
</if> -->