Quote:
Originally Posted by divided_by_fear
where is this at and can anyone translate that....
|
Sorry!
In Template RADIO find
Code:
<fieldset class="fieldset">
<legend>Available Stations</legend>
<center>
{$Station_Select}<br /><br />
<input type='button' value='Play This Station' class='button' onclick='initiateStation()' />
</center>
</fieldset>
change to
Code:
<fieldset class="fieldset">
<legend>Available Stations</legend>
<center>
<if condition="in_array($bbuserinfo[usergroupid], array(6,7,9))"> {$Station_Select}<br /><br />
<input type='button' value='Play This Station' class='button' onclick='initiateStation()' />
</if>
<if condition="in_array($bbuserinfo[usergroupid], array(1,2,3,4,5,8))"> ==MEMBERS ONLY==
</if>
</center>
</fieldset>