去评论
dz插件网

X3.5帖子中的图片,鼠标指到图片时提醒“下载附件”,如何去掉这个提示

饾暦饾枎饾枒饾枏饾枂饾枅饾枑
2024/06/19 10:18:21
X3.5帖子中插入的图片,当鼠标经过指到图片时,提醒“下载附件”以及上传时间等,如何去除文字提醒?如下图所示:





X3.4版本是修改template/default/forum/discuzcode.htm文件,查找第258行,源代码如下:
  1. <font size="3"><img{if $attach['price'] && $_G['forum_attachmentdown'] && $_G['uid'] != $attach['uid']} class="attprice"{/if} zoomfile'), 0, 0, '{$_G[setting][showexif]}')" zoomfile="{if $attach[refcheck]}forum.php?mod=attachment{$is_archive}&aid=$aidencode&noupdate=yes&nothumb=yes{else}{$attach[url]}$attach[attachment]{/if}" file="{if $attach[refcheck]}forum.php?mod=attachment{$is_archive}&aid=$aidencode{else}{$attach[url]}$attachthumb{/if}" inpost="1"{if $_GET['from'] != 'preview'} onmouseover="showMenu({'ctrlid':this.id,'pos':'12'})"{/if} /></font>
将上述代码最后一句
  1. <font size="3">$_GET['from'] != 'preview'} onmouseover="showMenu({'ctrlid':this.id,'pos':'12'})"{/if} /></font>
修改为:
  1. <font size="3">$_GET['from'] != 'preview'} {if $firstpost && $_G['fid'] && $_G['forum']['picstyle'] && ($_G['forum']['ismoderator'] || $_G['uid'] == $attach['uid'])}onmouseover="showMenu({'ctrlid':this.id,'pos':'12'})"{/if}{/if} /></font>
以及修改第260行,源代码如下:
  1. <font size="3"></font>
最后一句代码:
  1. <font size="3">$widthcode id="aimg_$attach[aid]" inpost="1"{if $_GET['from'] != 'preview'} onmouseover="showMenu({'ctrlid':this.id,'pos':'12'})"{/if} /></font>
修改为:
  1. <font size="3">$widthcode id="aimg_$attach[aid]" inpost="1"{if $_GET['from'] != 'preview'} {if $firstpost && $_G['fid'] && $_G['forum']['picstyle'] && ($_G['forum']['ismoderator'] || $_G['uid'] == $attach['uid'])}onmouseover="showMenu({'ctrlid':this.id,'pos':'12'})"{/if}{/if} /></font>
并删除第267行源代码,如下:
  1. <font size="3"><a href="forum.php?mod=attachment{$is_archive}&aid=$aidencode&nothumb=yes" target="_blank">{lang download}</a></font>


如果有第三方模板,在模板里找到该文件,同样的操作,就可以去掉“下载附件”字样。


X3.5这个文件看了,代码有点差异,不知道如何修改才能删除“下载附件”提醒,求指教!