Hey all,
Articles on my site frequently go unpublished because people don't realize that articles are set to "Not Published" by default.
[See attachment]
Can you help me set it to Publish by default?
Here's the code in
vbcms_edit_publisher:
HTML Code:
<div class="blockrow">
<label class="thirdleft">{vb:rawphrase published}</label>
<div class="twothirdsright">
<ul class="multifield group floatcontainer">
<li><input type="radio" value="0" name="setpublish" id="setpublish0" tabindex="1" <vb:if condition="$setpublish"> checked="checked"</vb:if> /> <label for="setpublish0" class="secondary">{vb:rawphrase yes}</label> {vb:stylevar dirmark}</li>
<li><input type="radio" value="1" name="setpublish" id="setpublish1" tabindex="1" <vb:if condition="!$setpublish"> checked="checked"</vb:if> /> <label for="setpublish1" class="secondary">{vb:rawphrase no}</label></li>
</ul>
</div>
</div>
Thank you for the help.