Quote:
Originally Posted by t55
Just thought I should mention this, the link does not appear in the UserCP if you have this addon installed: GTUserCP - Enhanced USERCP Interface
|
Makes sense considering that the GTUserCP mod replaces the USERCP_SHELL.
Took a quick look at it, and I THINK (NOTE: UNTESTED, TRY AT YOUR OWN RISK, preferably on a test bed first) you can make 2 quick edits to add the Extra Options link.
In GTPM_USERCP_SHELL Find:
Code:
<tr>
<td class="$navclass[options]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td>
</tr>
after it paste:
Code:
<tr>
<td class="$navclass[extra]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=extra">$vbphrase[edit_extra_options]</a></td>
</tr>
and in gtpm_usercp_navbit Find:
Code:
<tr><td class="vbmenu_option" align="$stylevar[left]"><a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td></tr>
after it paste:
Code:
<tr><td class="vbmenu_option" align="$stylevar[left]"><a href="profile.php?$session[sessionurl]do=extra">$vbphrase[edit_extra_options]</a></td></tr>
Again, note: UNTESTED! Not my fault if you run it on a live server and blow it up!