Quote:
Originally Posted by kh99
I think it should, but you'd have to update the "if" tags in the template like this:
Code:
<vb:if condition="in_array($foruminfo['forumid'], array(1, 2, 3))">
<tr>
<td><input type="checkbox" class="bginput" name="accept_rules" value="true"/> I accept the forum rules</td>
</tr>
</vb:if>
|
Thanks again for being so helpful kh99
I have created and enabled the plugin as you suggested above and am now putting the following in my SHOWTHREAD template, right above the code for the signature checkbox:
Code:
<vb:if condition="in_array($foruminfo['forumid'], array(3, 4, 17, 24))">
<tr>
<td><input type="checkbox" class="bginput" name="accept_rules" value="true"/>I agree to follow the rules.</td>
</tr>
</vb:if>
I checked that both the plugin and this template code have the same forum IDs in the code but for some reason it doesn't appear on the SHOWTHREAD page.
Any idea what I could be doing wrong? Thank you!