很多站长想要简洁的快速回复框,如图所示:

修改方法如下:
1. 删除右侧表情,编辑 Discuz! 模板文件:template/default/forum/viewthread_fastpost.htm 删除第 37 行代码:

  1. <!--{if
    empty($_GET[from]) && $_G[setting][fastsmilies]}--><div
    id="fastsmiliesdiv" ><div
    id="fastsmiliesdiv_data"><div
    id="fastsmilies"></div></div></div><!--{/if
  2. }-->                    

修改第 38 行代码:

  1. <div{if empty($_GET[from]) && $_G[setting][fastsmilies]} {/if} id="fastposteditor">

修改为:

  1. <div id="fastposteditor">

2. 删除编辑器图标,在 40 行左右,删除以下代码:

  1. <div >
  2.                                         <span >
  3.                                                 <!--{hook/viewthread_fastpost_func_extra}-->
  4.                                                 <a
    href="forum.php?mod=post&action=reply&fid=$_G[fid]&tid=$_G[tid]{if
    $_GET[from]}&from=$_GET[from]{/if}" onclick="return
    switchAdvanceMode(
  5. this.href)">{lang post_advancemode}</a>
  6.                                         </span>
  7.                                         <!--{eval $seditor =
    array('fastpost', array('at', 'bold', 'color', 'img', 'link', 'quote',
    'code', 'smilies'), !$allowfastpost ? 1 : 0, $allowposta
  8. ttach && $_GET['from'] != 'preview' &&
    $allowfastpost ? '<span >|</span><span
    id="spanButtonPlaceholder">'.lang('template',
    'upload').'</span>' : '');}-->
  9.                                         <!--{hook/viewthread_fastpost_ctrl_extra}-->
  10.                                         <!--{subtemplate common/seditor}-->
  11.                                 </div>