Quote:
Originally Posted by gdguide
Can you guys clarify where you are putting this:
<if condition="in_array($bbuserinfo[usergroupid], array(5,6,7))">
here you do put template edits
</if>
Are you putting that around every edit in the templates that are listed? Can you give an example of how this is integrated with the code? It's not working for me at all.
|
Yes, you have to put any template edit within this conditional. For example first template edit would be
Code:
<if condition="in_array($bbuserinfo[usergroupid], array(5,6,7))">
<td class="$bgclass"><input type="checkbox" name="deletebox[$userinfo[userid]]" value="$userinfo[userid]" /></td>
</tr>
</if>
instead of
Code:
<td class="$bgclass"><input type="checkbox" name="deletebox[$userinfo[userid]]" value="$userinfo[userid]" /></td>
</tr>