MyBB Community Forums

Full Version: Auto Post add button
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i'd like an auto post button:
when i click it, will add a post in the specified topic... in HTML... how to do it?
i tried with this code:
<form action="website" method="post" name="REPLIER"> 
<input name="st" value="0" type="hidden"> 

<input name="act" value="Post" type="hidden"> 
<input name="fid" value="forumId" type="hidden"> 
<input name="CODE" value="03" type="hidden"> 
<input name="tid" value="TopicID" type="hidden"> 
<input name="Post" value="post " type="hidden"> 
<input name="submit" value="text button" tabindex="5" class=e="forminput" type="submit"></fidorm> 

thank you in advance

PS: i have the formimput class...
upping topic
You can add this settings with your ACP>Configuration>Settings>Moderation Tools>Add New Thread Tool or Add New Post Tool.

After you add it just go to the thread select it and select from the "Inline Thread Moderation" the aption you made.
i can't see the Moderation Tool in settings
ACP>Configuration go to the <<<< tab and select Moderation Tools and after Add New Thread Tool or Add New Post Tool.
i made the code:
Quote:<form method="post" action="newreply.php?tid=Id Topic&amp;processed=1" name="quick_reply_form" id="quick_reply_form">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<input type="hidden" name="subject" value="post subject" />
<input type="hidden" name="action" value="do_newreply" />
<input type="hidden" name="posthash" value="{$posthash}" id="posthash" />
<input type="hidden" name="quoted_ids" value="" id="quoted_ids" />
<input type="hidden" name="lastpid" id="lastpid" value="{$last_pid}" />
<input type="hidden" name="from_page" value="{$page}" />
<input type="hidden" name="tid" value="Id Topic" />
<input type="hidden" name="method" value="quickreply" />
<input type="hidden" name="message" value="post Message" />
<input type="submit" class="button" value="Button Text" tabindex="2" accesskey="s" id="quick_reply_submit"/>
</form>


Coded by ExtremeStyle Forum