Okay, so log into your IPB 3 Admin Panel. Then navigate to the Look & Feel Tab and go into the Style you want to edit.
Once there, lets say you want to make a Message display "Hello Admins" but you only want it to appear for 3 Groups.
Use this IF Statement:
Naturally, replace the ID's (4,5,6) with your Group Ids and replace the "Hello Admins" with your desired Content.
Tip: This line of coding is useful for advertisement control... At least that's what i use it for to distinguish who see's the ads and who doesn't.
Once there, lets say you want to make a Message display "Hello Admins" but you only want it to appear for 3 Groups.
Use this IF Statement:
<if test="in_array($this->memberData['member_group_id'], array(4,5,6) )"> Hello Admins <else /> </if>
Naturally, replace the ID's (4,5,6) with your Group Ids and replace the "Hello Admins" with your desired Content.
Tip: This line of coding is useful for advertisement control... At least that's what i use it for to distinguish who see's the ads and who doesn't.













