Quote:
Find:
HTML Code:
<if condition="$bbuserinfo['userid']">
Near this, find:
HTML Code:
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong>
After this (yes, before the <br />), add:
HTML Code:
<!-- Quick Account Switch v1.2 -->
<if condition="$account_master">
<span id="switchacc"><a href="#switchacc"><strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong></a> <script type="text/javascript"> vbmenu_register("switchacc"); </script></span><br />
<else />
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />
</if>
<!-- Quick Account Switch v1.2 -->
|
That should say:
Quote:
Find:
HTML Code:
<if condition="$bbuserinfo['userid']">
Near this, find:
HTML Code:
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong>
Replace With:
HTML Code:
<!-- Quick Account Switch v1.2 -->
<if condition="$account_master">
<span id="switchacc"><a href="#switchacc"><strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong></a> <script type="text/javascript"> vbmenu_register("switchacc"); </script></span><br />
<else />
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />
</if>
<!-- Quick Account Switch v1.2 -->
|
The way it is now it'll show "Welcome User" twice one as a link one not as a link, just thought you should know ^^