Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[已答复] 想将附件显示位置更改!

[复制链接]
andylau918 发表于 2011-12-6 15:28:53 | 显示全部楼层 |阅读模式
问题描述
适用版本: Discuz! X2
浏览器: IE8 IE9 IE10 
使用模板: 官方模板
BUG地址: https://discuz.dismall.com/
想将附件显示位置,由现时在帖内底部,改到顶部,即在帖内广告上方以下位置!
谢谢大大们!{:soso_e152:}
cr180 发表于 2011-12-6 15:47:17 | 显示全部楼层
楼主是想让附件列表和帖子内容对换位置吗?


文件:template\default\forum\viewthread_node_body.htm
注意备份!
查找并删除:

  1. <!--{if $post['attachment']}-->
  2.             <div class="locked">{lang attachment}: <em><!--{if $_G['uid']}-->{lang attach_nopermission}<!--{else}-->{lang attach_nopermission_login} <!--{hook/global_login_text}--><!--{/if}--></em></div>
  3.         <!--{elseif $post['imagelist'] || $post['attachlist']}-->
  4.             <div class="pattl">
  5.                 <!--{if $post['imagelist'] && $_G['setting']['imagelistthumb'] && $post['imagelistcount'] >= $_G['setting']['imagelistthumb']}-->
  6.                     <!--{if !isset($imagelistkey)}-->
  7.                         <!--{eval $imagelistkey = rawurlencode(md5($_G[tid].'|100|100'))}-->
  8.                         <script type="text/javascript" reload="1">var imagelistkey = '$imagelistkey';</script>
  9.                     <!--{/if}-->
  10.                     <!--{eval $post['imagelistthumb'] = true;}-->
  11.                     <div class="bbda cl mtw mbm pbm">
  12.                         <strong>{lang more_images}</strong>
  13.                         <a href="javascript:;" onclick="attachimglst('$post[pid]', 0)" class="xi2 attl_g">{lang image_small}</a>
  14.                         <a href="javascript:;" onclick="attachimglst('$post[pid]', 1, {echo intval($_G['setting']['lazyload'])})" class="xi2 attl_m">{lang image_big}</a>
  15.                     </div>
  16.                     <div id="imagelist_$post[pid]" class="cl" style="display:none"><!--{echo showattach($post, 1)}--></div>
  17.                     <div id="imagelistthumb_$post[pid]" class="pattl_c cl"><img src="{IMGDIR}/loading.gif" width="16" height="16" class="vm" /> {lang image_list_openning}</div>
  18.                 <!--{else}-->
  19.                     <!--{echo showattach($post, 1)}-->
  20.                 <!--{/if}-->
  21.                 <!--{if $post['attachlist']}-->
  22.                     <!--{echo showattach($post)}-->
  23.                 <!--{/if}-->
  24.             </div>
  25.         <!--{/if}-->
复制代码












查找:

  1. <!--{if $post['first']}-->
  2.             <!--{if !$_G[forum_thread][special]}-->
  3.                 <table cellspacing="0" cellpadding="0"><tr><td class="t_f" id="postmessage_$post[pid]">
  4.                 <!--{if !$_G['inajax']}-->
  5.                     <!--{if $ad_a_pr}-->
  6.                         $ad_a_pr
  7.                     <!--{/if}-->
  8.                 <!--{/if}-->
  9.                 $post[message]</td></tr></table>
  10.             <!--{elseif $_G[forum_thread][special] == 1}-->
  11.                 <!--{template forum/viewthread_poll}-->
  12.             <!--{elseif $_G[forum_thread][special] == 2}-->
  13.                 <!--{template forum/viewthread_trade}-->
  14.             <!--{elseif $_G[forum_thread][special] == 3}-->
  15.                 <!--{template forum/viewthread_reward}-->
  16.             <!--{elseif $_G[forum_thread][special] == 4}-->
  17.                 <!--{template forum/viewthread_activity}-->
  18.             <!--{elseif $_G[forum_thread][special] == 5}-->
  19.                 <!--{template forum/viewthread_debate}-->
  20.             <!--{elseif $threadplughtml}-->
  21.                 $threadplughtml
  22.                 <table cellspacing="0" cellpadding="0"><tr><td class="t_f" id="postmessage_$post[pid]">$post[message]</td></tr></table>
  23.             <!--{/if}-->
  24.         <!--{else}-->
  25.             <table cellspacing="0" cellpadding="0"><tr><td class="t_f" id="postmessage_$post[pid]">
  26.             <!--{if !$_G['inajax']}-->
  27.                 <!--{if $ad_a_pr}-->
  28.                     $ad_a_pr
  29.                 <!--{/if}-->
  30.             <!--{/if}-->
  31.             $post[message]</td></tr></table>
  32.         <!--{/if}-->
复制代码

在上面增加:

  1. <!--{if $post['attachment']}-->
  2.             <div class="locked">{lang attachment}: <em><!--{if $_G['uid']}-->{lang attach_nopermission}<!--{else}-->{lang attach_nopermission_login} <!--{hook/global_login_text}--><!--{/if}--></em></div>
  3.         <!--{elseif $post['imagelist'] || $post['attachlist']}-->
  4.             <div class="pattl">
  5.                 <!--{if $post['imagelist'] && $_G['setting']['imagelistthumb'] && $post['imagelistcount'] >= $_G['setting']['imagelistthumb']}-->
  6.                     <!--{if !isset($imagelistkey)}-->
  7.                         <!--{eval $imagelistkey = rawurlencode(md5($_G[tid].'|100|100'))}-->
  8.                         <script type="text/javascript" reload="1">var imagelistkey = '$imagelistkey';</script>
  9.                     <!--{/if}-->
  10.                     <!--{eval $post['imagelistthumb'] = true;}-->
  11.                     <div class="bbda cl mtw mbm pbm">
  12.                         <strong>{lang more_images}</strong>
  13.                         <a href="javascript:;" onclick="attachimglst('$post[pid]', 0)" class="xi2 attl_g">{lang image_small}</a>
  14.                         <a href="javascript:;" onclick="attachimglst('$post[pid]', 1, {echo intval($_G['setting']['lazyload'])})" class="xi2 attl_m">{lang image_big}</a>
  15.                     </div>
  16.                     <div id="imagelist_$post[pid]" class="cl" style="display:none"><!--{echo showattach($post, 1)}--></div>
  17.                     <div id="imagelistthumb_$post[pid]" class="pattl_c cl"><img src="{IMGDIR}/loading.gif" width="16" height="16" class="vm" /> {lang image_list_openning}</div>
  18.                 <!--{else}-->
  19.                     <!--{echo showattach($post, 1)}-->
  20.                 <!--{/if}-->
  21.                 <!--{if $post['attachlist']}-->
  22.                     <!--{echo showattach($post)}-->
  23.                 <!--{/if}-->
  24.             </div>
  25.         <!--{/if}-->
复制代码



回复

使用道具 举报

 楼主| andylau918 发表于 2011-12-8 15:48:48 | 显示全部楼层
cr180 发表于 2011-12-6 15:47
楼主是想让附件列表和帖子内容对换位置吗?

thx! cr180
回复

使用道具 举报

 楼主| andylau918 发表于 2012-5-23 20:26:47 | 显示全部楼层
want for x2.5 thx!!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-27 06:29 , Processed in 0.023747 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表