Quote:
Originally Posted by multiplex
would somebody be able to provide some guidance on how to not show this banner to guests
would it be as simple as adding
Code:
<if condition="$show['member']">
</if>
in the template? in the xml?
|
This is how i done it
In Marquee_Text template find
Code:
<if condition="$vboptions[mtext_active">
Remove the trailing
Then add what usergroups you
dont want to see it
For instance non members would be
Code:
and $vbulletin->userinfo['usergroupid'] != 1">
You can add multipule
here is a coppy of my Marquee_Text template to give you idea
Code:
<br />
<table <if condition="$vboptions[mtext_border]">class="tborder"</if> border="0" width="100%">
<tr>
<td>
<if condition="$vboptions[mtext_active]
and $vbulletin->userinfo['usergroupid'] != 6
and $vbulletin->userinfo['usergroupid'] != 7
and $vbulletin->userinfo['usergroupid'] != 5
and $vbulletin->userinfo['usergroupid'] != 10
and $vbulletin->userinfo['usergroupid'] != 9">
<marquee direction="$yer" scrolldelay="$vboptions[mtext_speed]">
<if condition="$vboptions[mtext_bold]"><b></if><if condition="$vboptions[mtext_italic]"><i></if><font color="$renk" size= $vboptions[mtext_size]>$vboptions[mtext_text]</color><if condition="$vboptions[mtext_bold]"></i></if><if condition="$vboptions[mtext_italic]"></b></if>
</marquee>
</if>
</td>
</tr>
</table>
So usergroups there 6,7,5,10 and 9 WONT see it
Hope that helps