How to make dif skins for dif usergroup

im sure theres some mod for it, but i cbf searching,
you can however make each style that will be active, user selectable. then open up your footer template


do this in all skins you want to be user selectable by VIPs..
find:
HTML:
<if condition="$show['quickchooser']">
		<td class="tfoot">
			<select name="styleid" onchange="switch_id(this, 'style')">
				<optgroup label="$vbphrase[quick_style_chooser]">
					$quickchooserbits
				</optgroup>
			</select>
		</td>
	</if>

and replace with:
HTML:
<if condition="is_member_of($bbuserinfo, 6, 5, *VIPUsergroupID*)">
		<td class="tfoot">
			<select name="styleid" onchange="switch_id(this, 'style')">
				<optgroup label="$vbphrase[quick_style_chooser]">
					$quickchooserbits
				</optgroup>
			</select>
		</td>
	</if>
where *VIPUsergroupID* is the usergroupID of your VIP's :P


if you have mroe then 1 skin for selection atm for registered usrs and guests then dont bother with this :)
 
Back
Top