Lynne, in the
SHOWTHREAD template I found the following code that I believe is where I need to be.
Code:
<vb:if condition="$bbuserinfo['signature']">
<div class="blockrow">
<ul class="checkradio group">
<li><label for="cb_signature">
<input type="checkbox" name="signature" id="cb_signature" value="1" checked="checked" tabindex="1" />
{vb:rawphrase show_your_signature}
</label></li>
</ul>
</div>
</vb:if>
Code:
<vb:if condition="$show['openclose']">
<div class="blockrow openclose">
<ul class="checkradio">
<li><label for="cb_openclose">
<input type="checkbox" name="openclose" id="cb_openclose" value="1" tabindex="1" />
<vb:if condition="$show['closethread']">{vb:rawphrase close_this_thread}<vb:else />{vb:rawphrase reopen_this_thread}</vb:if>
</label></li>
</ul>
</div>
</vb:if>
But I see nothing different between the
Show your signature and
Close this thread code blocks that would make the active areas for these two different (which they are).
Where would you suggest adding the formcontrol code?