Log in

View Full Version : Removing Links from Quick Links


NFLfbJunkie
08-29-2007, 02:49 PM
I have Princeton's UserCP installed which has similar links that are in the Quick Links drop down menu on the navbar. So I want to remove the redundant links (everything circled in yellow) from the Quick Links menu. What code in the navbar template do I need to remove to do this?

SCRIPT3R
08-29-2007, 04:58 PM
remove this...


<tr><td class="thead"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_control_panel]</a></td></tr>
<if condition="$show['siglink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a></td></tr></if>
<!--<if condition="$show['avatarlink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a></td></tr></if>--> <if condition="$show['avatarlink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_profile]</a></td></tr>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td></tr>

NFLfbJunkie
08-29-2007, 07:16 PM
Excellent. Thank you so much GearTripper.