byadmin 發表於 2013-8-15 16:35:56
, 3779人已閱讀 , 0人回應
不曉得有沒有人跟筆者一樣, 不喜歡太多DISCUZ不必要的功能在網頁上顯示 ! 像圖片移動經過時顯示下載附件 , 就讓筆者非常不喜歡 , 下面提供修改解決方法給大家 , 讓你的DISCUZ更清爽一點吧 ^^
煩人的下載提示圖↑
一、x3.0的修改方法:
找到template/default/forum/discuzcode.htm文件,查找:- mod=attachment{$is_archive}&aid=$aidencode&noupdate=yes{else}{$attach[url]}$attach[attachment]{/if}" $widthcode id="aimg_$attach[aid]" inpost="1"{if $_GET['from'] != 'preview'} onmouseover="showMenu({'ctrlid':this.id,'pos':'12'})"{/if} />
複製代碼 修改為:- mod=attachment{$is_archive}&aid=$aidencode&noupdate=yes{else}{$attach[url]}$attach[attachment]{/if}" $widthcode id="aimg_$attach[aid]" inpost="1"{if $_GET['from'] != 'preview'} {/if} />
複製代碼二、x2.5的修改方法:
找到template/default/forum/discuzcode.htm文件,查找(最後一處):- alt="$attach[imgalt]" title="$attach[imgalt]" onmouseover="showMenu({'ctrlid':this.id,'pos':'12'})"
複製代碼 修改為:- alt="$attach[imgalt]" title="$attach[imgalt]"
複製代碼 簡單的講就是將滑鼠移動經過的觸發事件程式碼拿掉就可以了 "onmouseover="...."
|
|