Quote:
Originally Posted by Stifmeister2
I love the fact that this mod doesn't require any template or code edits.
2.5.0 seems to be working fine for me. It doesn't add that UserCp menu when I use this mod, but it's no big deal. I don't really need that feature on my board. 
|
However you say you don't need this feature but you may add that item handy as below:
in USERCP_SHELL template find similar to this:
HTML 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 that add this:
HTML Code:
<if condition="$vbulletin->options['qeimp_enabled'] AND (($qei_apply AND (2 & $vbulletin->options['qei_user_quickeditor_settings'])) OR ((4 & $vbulletin->options['qei_user_quickeditor_settings']) AND (1 & $vbulletin->userinfo['permissions']['qeipermissions'])))">
<tr><td class="$navclass[quickeditor]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=quickeditor">$vbphrase[quickeditor_settings]</a></td></tr>
</if>
Good Luck