PDA

View Full Version : How to make articles publish automatically?


redhawk89
01-04-2010, 09:28 PM
I want to simplify making articles for members.

Is there a way I can make articles "auto-publish", that is, publish as soon as they write the article?

I want to take away their option to not publish it.

Lynne
01-04-2010, 09:58 PM
Questions regarding default vBulletin 4 should be asked on the vBulletin.com forums. See this sticky - Installation Issues / Questions or bug reports regarding default vBulletin 4.0 (https://vborg.vbsupport.ru/showthread.php?t=228035)

Vaupell
01-04-2010, 10:04 PM
Youre not gonna like it but

AdminCP > styles > your style > edit templates >

find and open : vbcms_edit_publisher

Find :
<div class="fullwidth" >
<div class="thirdleft">{vb:rawphrase published}</div>
<div class="twothirdsright">
<input type="radio" value="1" name="setpublish" <vb:if condition="$setpublish"> checked="checked"</vb:if> />{vb:rawphrase yes}&nbsp;&nbsp;
<input type="radio" value="0" name="setpublish" <vb:if condition="! $setpublish"> checked="checked"</vb:if> />{vb:rawphrase no}
</div>


^^ above code is the part that shows "published ()yes (x)no"

Then you could maybe either change the values on those two input boxes
and then instead of makeing them "radio" change it to hidden.. :D

or just comment it all out and put in

<input type="hidden" name="setpublish" value="0">

--- unfortunally dont think you can force publishing by default..
so it got to be modded.

redhawk89
01-27-2010, 12:41 AM
This is very valuable, thanks!