I am making a tabbed java menu and want to show a button that says register or my account if registered.
I got the "my account.gif" working using the code
PHP Code:
<if condition="$show['member']">
my link and info to their account here.
</if>
I could not get it to show register.gif using the code below. (btw the menu is not on a separate page, but it's on the vbulletin header right under logo!)
PHP Code:
<if condition="$show['registerbutton']">
<td class="vbmenu_control"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td>
</if>
help me pleeez