1. 修改评论表单
    • 打开后台 – 模板 – 公共模板变量 – 评论表单。
    • 查找并替换以下代码:
      验证码:<input name="key" type="text" class="inputText" size="10" /><img src="[!--news.url--]e/ShowKey/?v=pl" align="absmiddle" name="plKeyImg" id="plKeyImg" onclick="plKeyImg.src='[!--news.url--]e/ShowKey/?v=pl&t='+Math.random()" title="看不清楚,点击刷新" />

      替换为:

      <?php
      if($public_r['plkey_ok']) {
          echo '验证码:<input name="key" type="text" class="inputText" size="10" /><img src="[!--news.url--]e/ShowKey/?v=pl" align="absmiddle" name="plKeyImg" id="plKeyImg" onclick="plKeyImg.src=\'[!--news.url--]e/ShowKey/?v=pl&t=\'+Math.random()" title="看不清楚,点击刷新" />';
      }
      ?>