Most certainly,
Here is the section of the style 'newreply' with the comment
Code:
</div>
<vb:if condition="$show['additional_options']">
<h3 class="blockhead">{vb:rawphrase additional_options}</h3>
<div class="blockbody formcontrols">
<vb:if condition="$show['misc_options']">
<div class="blockrow">
<!-- Some Comment -->
<ul class="checkradio group">
<vb:if condition="$bbuserinfo['signature'] != ''">
<li>
<label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="4" {vb:raw checked.signature} /> {vb:rawphrase show_your_signature}</label>
Here is my complete plugin code on the 'process_templates_complete' hook:
Code:
$str = "<!-- Some Comment -->";
$replace = "<br /><input type='checkbox' name='resolved' value='1' />Resolution?";
$vbulletin->templatecache['newreply'] = str_replace($str,$str.$replace,$vbulletin->templatecache['newreply']);
I'm running vB 4.0 RC2.
Please let me know if you need any more information.
Thanks Again.