如何去掉论坛右下角的新短消息提醒
打开 template/default/common/footer.htm 文件,然后找到 137-150 行的代码删除即可

  1.         <script type="text/javascript">
  2.         var h5n = new Html5notification();
  3.         if(h5n.issupport()) {
  4.                 <!--{if $_G[member][newpm] && $_GET[do] != 'pm'}-->
  5.                 h5n.shownotification('pm',
    '$_G[siteurl]home.php?mod=space&do=pm',
    '<!--{avatar($_G[uid],small,true)}-->', '{lang newpm_subject}',
    '{lang newpm_notice_info}');
  6.                 <!--{/if}-->
  7.                 <!--{if $_G[member][newprompt] && $_GET[do] != 'notice'}-->
  8.                                 <!--{loop $_G['member']['category_num'] $key $val}-->
  9.                                         <!--{eval $noticetitle = lang('template', 'notice_'.$key);}-->
  10. h5n.shownotification('notice_$key',
    '$_G[siteurl]home.php?mod=space&do=notice&view=$key',
    '<!--{avatar($_G[uid],small,true)}-->', '$noticetitle ($val)',
    '{lang newnotice_notice_info}');
  11.                                 <!--{/loop}-->
  12.                 <!--{/if}-->
  13.         }
  14.         </script>