from:
http://www.alan888.com/Discuz/thread-111151-1-1.html
程式名稱: 主題列表頁顯示會員
頭像
程式作者: 夜之戀
增補作者: 夜之戀
技術支援:
http://nightly-love.net 夜之戀綜合社區
版權聲明: 轉載請註明本站
說 明: 未有說明
1. 修改 forumdisplay.
php
找 (有 2 個)
複製內容到剪貼簿
代碼:
WHERE t.fid='$fid' $filteradd AND $displayorderadd上加
複製內容到剪貼簿
代碼:
LEFT JOIN {$tablepre}memberfields mf ON(mf.uid = t.authorid)找
複製內容到剪貼簿
代碼:
WHERE t.tid IN ($stickytids) AND t.displayorder IN (2, 3)上加
複製內容到剪貼簿
代碼:
LEFT JOIN {$tablepre}memberfields mf ON(mf.uid = t.authorid)找
複製內容到剪貼簿
代碼:
SELECT t.* FROM {$tablepre}threads t添加紅字 (有 4 次)
引用:
SELECT t.*, mf.avatar FROM {$tablepre}threads t
2. 修改 css.htm
最底下加入 (如有其他
風格也需加入)
複製內容到剪貼簿
代碼:
/* 主題列表頁 (forumdisplay) 顯示會員頭像 - START */
a:hover img.ava_border {border-color: #FF9900}
img.ava_border, a img.ava_border {border:1px solid #ccc; padding:2px; margin:0px; background-color:#fff; float:left; }
/* 主題列表頁 (forumdisplay) 顯示會員頭像 - END */3. 修改 forumdisplay.htm
找到
複製內容到剪貼簿
代碼:
<td class="author">
<cite>
<!--{if $thread['authorid'] && $thread['author']}-->
<a href="space.php?action=viewpro&uid=$thread[authorid]">$thread[author]</a>
<!--{else}-->
<!--{if $forum['ismoderator']}-->
<a href="space.php?action=viewpro&uid=$thread[authorid]">{lang anonymous}</a>
<!--{else}-->
{lang anonymous}
<!--{/if}-->
<!--{/if}-->
</cite>改為
<td class="author">
<!--// 主題列表頁 (forumdisplay) 顯示會員頭像 - START -->
<span id="t$thread[tid]" onmou
seover="showMenu(this.id)">
<a href="viewpro.php?uid=$thread[authorid]"><img src="$thread[avatar]" onerror="src='images/avatars/noavatar.gif'" class="ava_border" width="22" height="22" alt="" /></a>
</span>
<div class="headermenu_popup" id="t$thread[tid]_menu" style="display: none; background-color: #FFF; filter: Alpha(Opacity=85); opacity: 0.85; width: auto;">
<span style="white-space: nowrap;">
<img src="$thread[avatar]" style="border: 0" hspace="2" vspace="2" alt="" onerror="src='./images/avatars/noavatar.gif'" /><br />
{lang author}: <a href="viewpro.php?uid=$thread[authorid]">$thread[author]</a><br />
{lang dateline}: <span class="lighttxt">$thread[dateline]</span>
</span>
</div>
<!--// 主題列表頁 (forumdisplay) 顯示會員頭像 - END -->
<cite>
<!--{if $thread['authorid'] && $thread['author']}-->
<a href="space.php?action=viewpro&uid=$thread[authorid]">$thread[author]</a>
<!--{else}-->
<!--{if $forum['ismoderator']}-->
<a href="space.php?action=viewpro&uid=$thread[authorid]">{lang anonymous}</a>
<!--{else}-->
{lang anonymous}
<!--{/if}-->
<!--{/if}-->
</cite>
後臺 →
論壇管理 → 介面風格 → 更新 css 檔案快取