
01-11-2006, 01:39 PM
|
|
|
Join Date: Oct 2003
Location: Manchester, UK
Posts: 6,504
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Don Corleone
HTML Code:
<if condition="$show['member']">
<tr><td class="vbmenu_option"><a href="javascript:;" onClick="wimpyPopPlayer('http://www.oneforum.org/stream/wimpy.php','wimpyMP3player','width=369,height=322')">Music Box</a></td></tr></if>
I have this condition
how can I make it, that when a guest enter the forum, he sees the text "Music Box" without the link, and when he login, he can click on the text, coz it becomes an hyperlink...
is it possible?
|
That would be
HTML Code:
<tr><td class="vbmenu_option"><if condition="$show['member']"><a href="javascript:;" onClick="wimpyPopPlayer('http://www.oneforum.org/stream/wimpy.php','wimpyMP3player','width=369,height=322')">Music Box</a><else />Music Box</if></td></tr>
|