Quote:
Originally Posted by odeezie
I figured out why it would not show up.
The Extra Options link in the userCP will not show up if you have the UserCP icons hack installed: https://vborg.vbsupport.ru/showthread.php?t=170558
Once I disabled those icons, it worked just fine. Is there anyway I can make this work with the icons enabled?
|
Regarding the "Icons for UserCP Navigation 1.2" here an example to add the Extra Profile Link below the "Profile Picture" Link inside the UserCP...
Template
USERCP_SHELL_ICONS =>
Add this Code
Code:
<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/picture_edit.gif" 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>
<!-- Extra Profile Field -->
<tr>
<td class="$navclass[extraoptions]" nowrap="nowrap">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20">
<img border="0" src="$stylevar[imgdir_misc]/usercp_icons/page_user.gif" width="16" height="16"></td>
<td><a class="smallfont" href="profile.php?$session[sessionurl]do=extraoptions">$vbphrase[extra_options]</a></td>
</tr>
</table>
</td>
</tr>
<!-- / Extra Profile Field -->
<!-- / My Profile -->