I didn't try it, so no guarantee here :)
ACP>Look & Feel>your_skin>Templates>Post Screen>postFormTemplate
Copy this:
Quote
<fieldset id='post_options' class='with_subhead'>
<h3 class='bar'>{$this->lang->words['options']}</h3>
<div id='post_options_options'>
<h4>{$this->lang->words['post_options']}</h4>
<ul>
<if test="htmlstatus:|:is_array( $formData['checkBoxes']['html'] ) AND count( $formData['checkBoxes']['html'] )">
<li class='field'>
<select name="post_htmlstatus" class="input_select">
<option value="0"{$formData['checkBoxes']['html'][0]}>{$this->lang->words['pp_nohtml']}</option>
<option value="1"{$formData['checkBoxes']['html'][1]}>{$this->lang->words['pp_html1']}</option>
<option value="2"{$formData['checkBoxes']['html'][2]}>{$this->lang->words['pp_html2']}</option>
</select>
</li>
</if>
<li class='field checkbox'>
<input type="checkbox" name="enableemo" class="input_check" value="yes" id='enable_emo' {$formData['checkBoxes']['emo']} />
<label for='enable_emo'>{$this->lang->words['enable_emo']}</label>
</li>
<if test="enablesig:|:$this->memberData['member_id']">
<li class='field checkbox'>
<input type="checkbox" name="enablesig" class="input_check" value="yes" id='enable_sig' {$formData['checkBoxes']['sig']} />
<label for='enable_sig'>{$this->lang->words['enable_sig']}</label>
</li>
<if test="tracking:|:$formData['checkBoxes']['tra'] == '-tracking-'">
<li class='field'><span class='desc'>{$this->lang->words['already_sub']}</span><li>
<else />
<li class='field checkbox'>
<input type="checkbox" name="enabletrack" class="input_check" id='enable_track' value="1" {$formData['checkBoxes']['tra']} />
<label for='enable_track'>{$this->lang->words['enable_track']}</label>
</li>
</if>
</if>
</ul>
<hr />
<if test="edit_options_check:|:$formData['extraData']['showEditOptions']">
<h4>{$this->lang->words['edit_options']}</h4>
<ul>
<li class='field checkbox'>
<input type="checkbox" name="add_edit" value="1" id='append_edit' {$formData['extraData']['checked']} class="input_check" />
<label for='append_edit'>{$this->lang->words['append_edit']}</label>
</li>
</ul>
<hr />
</if>
<if test="showeditreason:|:$formData['extraData']['showReason']">
<ul>
<li class='field'>
<label for='post_edit_reason'>{$this->lang->words['reason_for_edit']}</label><br />
<input type="text" name="post_edit_reason" id='post_edit_reason' value="{$formData['extraData']['reasonForEdit']}" size='40' maxlength='250' class='input_text' />
</li>
</ul>
</if>
<if test="mod_options_check:|:$formData['modOptionsData']['dropDownOptions'] != """>
<h4>{$this->lang->words['mod_options']}</h4>
<ul>
<li class='field'>{$formData['modOptionsData']['dropDownOptions']}</select></li>
</ul>
<hr />
</if>
<if test="open_time_check:|:$formData['modOptionsData']['canSetOpenTime'] == 1 ">
<h4>{$this->lang->words['mod_open_time']} <span class='desc'>{$this->lang->words['post_optional']}</span></h4>
<ul>
<li class='field'>
<input type='text' size='20' name='open_time_date' id='mod_open_date' class='input_text' value='{$formData['modOptionsData']['myTimes']['open_date']}' />
<img src='{$this->settings['img_url']}/date.png' alt='{$this->lang->words['generic_date']}' id='mod_open_date_icon' class='clickable' />
<span class='desc'>{$this->lang->words['mod_date_format']}</span>
</li>
<li class='field'>
<input type='text' size='5' name='open_time_time' id='mod_open_time' class='input_text' value='{$formData['modOptionsData']['myTimes']['open_time']}' />
<span class='desc'>{$this->lang->words['mod_time_format']}</span>
</li>
</ul>
<hr />
</if>
<if test="close_time_check:|:$formData['modOptionsData']['canSetCloseTime'] == 1">
<h4>{$this->lang->words['mod_close_time']} <span class='desc'>{$this->lang->words['post_optional']}</span></h4>
<ul>
<li class='field'>
<input type='text' size='20' name='close_time_date' id='mod_close_date' class='input_text' value='{$formData['modOptionsData']['myTimes']['close_date']}' />
<img src='{$this->settings['img_url']}/date.png' alt='{$this->lang->words['generic_date']}' id='mod_close_date_icon' class='clickable' />
<span class='desc'>{$this->lang->words['mod_date_format']}</span>
</li>
<li class='field'>
<input type='text' size='5' name='close_time_time' id='mod_close_time' class='input_text' value='{$formData['modOptionsData']['myTimes']['close_time']}' />
<span class='desc'>{$this->lang->words['mod_time_format']}</span>
</li>
</ul>
<hr />
</if>
<h4>{$this->lang->words['post_icon']}</h4>
<ul id='post_icons'>
<li>
<input type="radio" class="input_radio" name="iconid" value="1"<if test="posticon1:|:isset( $formData['postIconSelected']['1'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon1.gif" alt='' />
</li>
<li>
<input type="radio" class="input_radio" name="iconid" value="2"<if test="posticon2:|:isset( $formData['postIconSelected']['2'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon2.gif" alt='' />
</li>
<li>
<input type="radio" class="input_radio" name="iconid" value="3"<if test="posticon3:|:isset( $formData['postIconSelected']['3'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon3.gif" alt='' />
</li>
<li>
<input type="radio" class="input_radio" name="iconid" value="4"<if test="posticon4:|:isset( $formData['postIconSelected']['4'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon4.gif" alt='' />
</li>
<li>
<input type="radio" class="input_radio" name="iconid" value="5"<if test="posticon5:|:isset( $formData['postIconSelected']['5'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon5.gif" alt='' />
</li>
<li>
<input type="radio" class="input_radio" name="iconid" value="6"<if test="posticon6:|:isset( $formData['postIconSelected']['6'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon6.gif" alt='' />
</li>
<li>
<input type="radio" class="input_radio" name="iconid" value="7"<if test="posticon7:|:isset( $formData['postIconSelected']['7'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon7.gif" alt='' />
</li>
<li class='clear'>
<input type="radio" class="input_radio" name="iconid" value="8"<if test="posticon8:|:isset( $formData['postIconSelected']['8'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon8.gif" alt='' />
</li>
<li>
<input type="radio" class="input_radio" name="iconid" value="9"<if test="posticon9:|:isset( $formData['postIconSelected']['9'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon9.gif" alt='' />
</li>
<li>
<input type="radio" class="input_radio" name="iconid" value="10"<if test="posticon10:|:isset( $formData['postIconSelected']['10'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon10.gif" alt='' />
</li>
<li>
<input type="radio" class="input_radio" name="iconid" value="11"<if test="posticon11:|:isset( $formData['postIconSelected']['11'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon11.gif" alt='' />
</li>
<li>
<input type="radio" class="input_radio" name="iconid" value="12"<if test="posticon12:|:isset( $formData['postIconSelected']['12'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon12.gif" alt='' />
</li>
<li>
<input type="radio" class="input_radio" name="iconid" value="13"<if test="posticon13:|:isset( $formData['postIconSelected']['13'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon13.gif" alt='' />
</li>
<li>
<input type="radio" class="input_radio" name="iconid" value="14"<if test="posticon14:|:isset( $formData['postIconSelected']['14'] )"> checked="checked"</if> />
<img src="{$this->settings['mime_img']}/style_extra/post_icons/icon14.gif" alt='' />
</li>
<li class='clear'>
<input type="radio" class="input_radio" name="iconid" value="0"<if test="posticon0:|:isset( $formData['postIconSelected']['0'] )"> checked="checked"</if> /> {$this->lang->words['picons_none']}
</li>
</ul>
<hr />
</div>
<span id='toggle_post_options' class='clickable'></span>
<script type='text/javascript'>
ipb.post.hideOptions();
</script>
</fieldset>
<fieldset class='submit'>
<input type='hidden' name='st' value='{$this->request['st']}' />
<input type='hidden' name='app' value='forums' />
<input type='hidden' name='module' value='post' />
<input type='hidden' name='section' value='post' />
<input type='hidden' name='do' value='{$form['doCode']}' />
<input type='hidden' name='s' value='{$this->member->session_id}' />
<input type='hidden' name='p' value='{$form['p']}' />
<input type='hidden' name='t' value='{$form['t']}' />
<input type='hidden' name='f' value='{$form['f']}' />
<input type='hidden' name='parent_id' value='{$form['parent']}' />
<input type='hidden' name='attach_post_key' value='{$form['attach_post_key']}' />
<input type='hidden' name='auth_key' value='{$this->member->form_hash}' />
<input type='hidden' name='removeattachid' value='0' />
<input type="submit" name="dosubmit" value="{$formData['buttonText']}" tabindex="0" class="input_submit" accesskey="s" />
<input type="submit" name="preview" value="{$this->lang->words['button_preview']}" tabindex="0" class="input_submit alt" />
{$this->lang->words['or']} <if test="cancelposting:|:$form['t']">
<a href='{parse url="showtopic={$form['t']}" template="showtopic" seotitle="{$formData['seoTopic']}" base="public"}' title='{$this->lang->words['cancel']}' class='cancel' tabindex='0'>{$this->lang->words['cancel']}</a>
<else />
<a href='{parse url="showforum={$form['f']}" template="showforum" seotitle="{$formData['seoForum']}" base="public"}' title='{$this->lang->words['cancel']}' class='cancel' tabindex='0'>{$this->lang->words['cancel']}</a>
</if>
</fieldset>
Now, go to
Topic View>topicViewTemplate and paste the above code right ABOVE this:
Quote
<!-- ACTIVE USERS -->
<if test="topicActiveUsers:|:is_array( $displayData['active_users'] ) AND count( $displayData['active_users'] )">
<div id='topic_stats' class='statistics general_box clear clearfix'>
<div id='topic_active_users' class='active_users'>