標題: [D6.0] 增加主題分類 4~6格都適用 5.0 5.5 6.0
  所需閱讀權限 5  
 5883988
 0040023
Rank: 4Rank: 4Rank: 4Rank: 4

頭銜: Lord

帖子: 347

精華: 0

積分: 2410 點

現金: 115 元

存款: 1000 元

閱讀權限: 25

註冊: 2006-2-14

來自: 嶺 東 學 園

狀態: 離線
 
發表於 2008-5-26 03:51  資料  個人空間  主頁 短消息  加為好友  添加 5883988 為MSN好友 通過MSN和 5883988 交談
增加主題分類 4~6格都適用 5.0 5.5 6.0

原帖:不明 (很多人修改又修改)

參考修改帖:http://www.discuz.net/viewthread ... hlight=%CE%E5%B8%F1
參考修改帖:http://www.alan888.com/Discuz/thread-133625-1-1.html

綜合修改者:5883988

演示:
[attach]61994[/attach]

主要分類 歸類首頁顯示

需要後台版塊有設定分類

才會在首頁中顯示

如果沒分類 不會在首頁顯示

此修改適用於
DZ5.0、DZ5.5、DZ6.0首頁4格、5格、6格

注意:請記得每次覆蓋或改寫文件前一定要先備份原修改文件(以便錯誤後反正)
   如修改出現錯誤 本人不負任何責任

1.打開 index.php
查找:
QUOTE:
新帖 或 新文章 或 最新主題 下的
$new_post_threadlist = array();
$nthread = array();
$query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.dateline DESC LIMIT 0, 10");
while($nthread = $db->fetch_array($query)) {
        $nthread['forumname'] = ereg_replace('<[^>]*>','',$nthread['name']);
        $nthread['view_subject'] = cutstr($nthread['subject'],$hack_cut_str);
        $nthread['view_author'] = cutstr($nthread['author'],$hack_cut_strauthor);
        $nthread['date']= gmdate("$dateformat $timeformat", $nthread['dateline'] + $timeoffset * 3600);
        $nthread['lastreplytime']= gmdate("$dateformat $timeformat", $nthread[lastpost] + ($timeoffset * 3600));
        if($nthread['highlight']) {
                $string = sprintf('%02d', $nthread['highlight']);
                $stylestr = sprintf('%03b', $string[0]);
                $nthread['highlight'] = 'style="';
                $nthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
                $nthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
                $nthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
                $nthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
                $nthread['highlight'] .= '"';
        } else {
                $nthread['highlight'] = '';
        }
        $new_post_threadlist[] = $nthread;
}


改成:
QUOTE:
$new_post_threadlist = array();
$nthread = array();
$query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.dateline DESC LIMIT 0, 10");
$query1 = $db->query("SELECT a.name,b.typeid FROM {$tablepre}threadtypes a, {$tablepre}threads b where b.typeid=a.typeid AND b.fid not in (0) AND b.displayorder not in (-1,-2) ORDER BY b.dateline DESC LIMIT 0, 10");
while(($nthread = $db->fetch_array($query))&&($ntypeids = $db->fetch_array($query1))) {
        $nthread['forumname'] = ereg_replace('<[^>]*>','',$nthread['name']);
        $nthread['view_subject'] = cutstr($nthread['subject'],$hack_cut_str);
        $nthread['view_author'] = cutstr($nthread['author'],$hack_cut_strauthor);
        $nthread['date']= gmdate("$dateformat $timeformat", $nthread['dateline'] + $timeoffset * 3600);
        $nthread['lastreplytime'] = gmdate("$dateformat $timeformat", $nthread[lastpost] + ($timeoffset * 3600));
        $nthread['typename'] = $ntypeids['name'];
        if($nthread['highlight']) {
                $string = sprintf('%02d', $nthread['highlight']);
                $stylestr = sprintf('%03b', $string[0]);
                $nthread['highlight'] = 'style="';
                $nthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
                $nthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
                $nthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
                $nthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
                $nthread['highlight'] .= '"';
        } else {
                $nthread['highlight'] = '';
        }
        $new_post_threadlist[] = $nthread;
}


查找:回復 或 回覆 或 最新回覆 下的
QUOTE:
$new_reply_threadlist = array();
$rthread = array();
$query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid  AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.lastpost DESC LIMIT 0, 10");
while($rthread = $db->fetch_array($query)) {
        $rthread['forumname'] = ereg_replace('<[^>]*>','',$rthread['name']);
        $rthread['view_subject'] = cutstr($rthread['subject'],$hack_cut_str);
        $rthread['view_lastposter'] = cutstr($rthread['lastposter'],$hack_cut_strauthor);
                $rthread['date']= gmdate("$dateformat $timeformat", $rthread['dateline'] + $timeoffset * 3600);
        $rthread['lastreplytime']= gmdate("$dateformat $timeformat", $rthread[lastpost] + ($timeoffset * 3600));
        if($rthread['highlight']) {
                $string = sprintf('%02d', $rthread['highlight']);
                $stylestr = sprintf('%03b', $string[0]);
                $rthread['highlight'] = 'style="';
                $rthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
                $rthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
                $rthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
                $rthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
                $rthread['highlight'] .= '"';
        } else {
                $rthread['highlight'] = '';
        }
        $new_reply_threadlist[] = $rthread;
}


改成:
QUOTE:
$new_reply_threadlist = array();
$rthread = array();
$query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid  AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.lastpost DESC LIMIT 0, 10");
$query1 = $db->query("SELECT a.name,b.typeid FROM {$tablepre}threadtypes a, {$tablepre}threads b where b.typeid=a.typeid AND b.closed NOT LIKE 'moved|%' AND b.replies !=0 AND b.fid not in (0) AND b.displayorder not in (-1,-2) ORDER BY b.lastpost DESC LIMIT 0, 10");
while(($rthread = $db->fetch_array($query))&&($rtypeids = $db->fetch_array($query1))) {
        $rthread['forumname'] = ereg_replace('<[^>]*>','',$rthread['name']);
        $rthread['view_subject'] = cutstr($rthread['subject'],$hack_cut_str);
        $rthread['view_lastposter'] = cutstr($rthread['lastposter'],$hack_cut_strauthor);
        $rthread['date']= gmdate("$dateformat $timeformat", $rthread['dateline'] + $timeoffset * 3600);
        $rthread['lastreplytime']= gmdate("$dateformat $timeformat", $rthread[lastpost] + ($timeoffset * 3600));
        $rthread['typename'] = $rtypeids['name'];
        if($rthread['highlight']) {
                $string = sprintf('%02d', $rthread['highlight']);
                $stylestr = sprintf('%03b', $string[0]);
                $rthread['highlight'] = 'style="';
                $rthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
                $rthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
                $rthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
                $rthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
                $rthread['highlight'] .= '"';
        } else {
                $rthread['highlight'] = '';
        }
        $new_reply_threadlist[] = $rthread;
}


查找:熱帖 或 熱門帖 或 本週/月熱門 下的
QUOTE:
$new_hot_threadlist = array();
$mthread = array();
$ctime=$timestamp-3600*24*7;//最後7是天數為本周  
$query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid  AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 AND t.dateline>$ctime AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.replies DESC LIMIT 0, 10");
while($mthread = $db->fetch_array($query)) {
        $mthread['forumname'] = ereg_replace('<[^>]*>','',$mthread['name']);
        $mthread['view_subject'] = cutstr($mthread['subject'],$hack_cut_str);
        $mthread['view_lastposter'] = cutstr($mthread['lastposter'],$hack_cut_strauthor);
                $mthread['date']= gmdate("$dateformat $timeformat", $mthread['dateline'] + $timeoffset * 3600);
        $mthread['lastreplytime']= gmdate("$dateformat $timeformat", $mthread[lastpost] + ($timeoffset * 3600));
        if($mthread['highlight']) {
                $string = sprintf('%02d', $mthread['highlight']);
                $stylestr = sprintf('%03b', $string[0]);
                $mthread['highlight'] = 'style="';
                $mthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
                $mthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
                $mthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
                $mthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
                $mthread['highlight'] .= '"';
        } else {
                $mthread['highlight'] = '';
        }
        $new_hot_threadlist[] = $mthread;
}


改成:
QUOTE:
$new_hot_threadlist = array();
$mthread = array();
$ctime=$timestamp-3600*24*7;//最後7是天數為本周  
$query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 AND t.dateline>$ctime AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.replies DESC LIMIT 0, 10");
$query1 = $db->query("SELECT a.name,b.typeid FROM {$tablepre}threadtypes a, {$tablepre}threads b where b.typeid=a.typeid AND b.closed NOT LIKE 'moved|%' AND b.replies !=0 AND b.dateline>$ctime AND b.fid not in (0) AND b.displayorder not in (-1,-2) ORDER BY b.replies DESC LIMIT 0, 10");
while(($mthread = $db->fetch_array($query))&&($mtypeids = $db->fetch_array($query1))) {
        $mthread['forumname'] = ereg_replace('<[^>]*>','',$mthread['name']);
        $mthread['view_subject'] = cutstr($mthread['subject'],$hack_cut_str);
        $mthread['view_lastposter'] = cutstr($mthread['lastposter'],$hack_cut_strauthor);
        $mthread['date']= gmdate("$dateformat $timeformat", $mthread['dateline'] + $timeoffset * 3600);
        $mthread['lastreplytime']= gmdate("$dateformat $timeformat", $mthread[lastpost] + ($timeoffset * 3600));
        $mthread['typename'] = $mtypeids['name'];
        if($mthread['highlight']) {
                $string = sprintf('%02d', $mthread['highlight']);
                $stylestr = sprintf('%03b', $string[0]);
                $mthread['highlight'] = 'style="';
                $mthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
                $mthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
                $mthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
                $mthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
                $mthread['highlight'] .= '"';
        } else {
                $mthread['highlight'] = '';
        }
        $new_hot_threadlist[] = $mthread;
}


2.打開您修改discuz.htm或新增的foruminfo.htm

查找:
QUOTE:
<!--{loop $new_post_threadlist $nthread}-->………中間因為4~6格不一樣所以我省略~但是頭尾不變………<!--{/loop}-->


改成:
QUOTE:
                                                <!--{loop $new_post_threadlist $nthread}-->
                                                        <!--{if $nthread[replies]}-->
                                                                <div style="overflow: hidden;height: 20px;width: 100%;">[<a href='forumdisplay.php?fid=$nthread[fid]&filter=type&typeid=$nthread[typeid]'><span style="color:#666666">$nthread[typename]</span></a>] <a href="viewthread.php?tid=$nthread[tid]" $nthread['highlight'] title='所在論壇: $nthread[forumname]{LF}主題標題: $nthread[subject] {LF}主題作者: $nthread[author]{LF}發表時間: $nthread[date]{LF}瀏覽次數: $nthread[views] 次 {LF}回覆次數: $nthread[replies] 次{LF}最後回覆: $nthread[lastreplytime]{LF}{lang lastpost}: $nthread[lastposter]'>$nthread[view_subject]</a></div>
                                                        <!--{else}-->
                                                                <div style="overflow: hidden;height: 20px;width: 100%;">[<a href='forumdisplay.php?fid=$nthread[fid]&filter=type&typeid=$nthread[typeid]'><span style="color:#666666">$nthread[typename]</span></a>] <a href="viewthread.php?tid=$nthread[tid]" $nthread['highlight'] title='所在論壇: $nthread[forumname]{LF}主題標題: $nthread[subject] {LF}主題作者: $nthread[author]{LF}發表時間: $nthread[date]{LF}瀏覽次數: $nthread[views] 次 {LF}回覆次數: $nthread[replies] 次{LF}最後回覆: 暫時沒有回覆'>$nthread[view_subject]</a></div>
                                                        <!--{/if}-->
                                                <!--{/loop}-->


查找:
QUOTE:
<!--{loop $new_reply_threadlist $rthread}-->………中間因為4~6格不一樣所以我省略~但是頭尾不變………<!--{/loop}-->


改成::
QUOTE:
                                                <!--{loop $new_reply_threadlist $rthread}-->
                                                        <div style="overflow: hidden;height: 20px;width: 100%;">[<a href='forumdisplay.php?fid=$nthread[fid]&filter=type&typeid=$rthread[typeid]'><span style="color:#666666">$rthread[typename]</span></a>] <a href="redirect.php?tid=$rthread[tid]&goto=lastpost#lastpost" $rthread['highlight'] title='所在論壇: $rthread[forumname]{LF}主題標題: $rthread[subject]{LF}主題作者: $rthread[author]{LF}發表時間: $rthread[date]{LF}瀏覽次數: $rthread[views] 次{LF}回覆次數: $rthread[replies] 次{LF}最後回覆: $rthread[lastreplytime]{LF}{lang lastpost}: $rthread[lastposter]'>$rthread[view_subject]</a></div>
                                                <!--{/loop}-->


查找:
QUOTE:
<!--{loop $new_hot_threadlist $mthread}-->………中間因為4~6格不一樣所以我省略~但是頭尾不變………<!--{/loop}-->


改成:
QUOTE:
                                                <!--{loop $new_hot_threadlist $mthread}-->
                                                        <div style="overflow: hidden;height: 20px;width: 100%;">[<a href='forumdisplay.php?fid=$nthread[fid]&filter=type&typeid=$mthread[typeid]'><span style="color:#666666">$mthread[typename]</span></a>] <a href="viewthread.php?tid=$mthread[tid]" $mthread['highlight'] title='所在論壇: $mthread[forumname]{LF}主題標題: $mthread[subject]{LF}主題作者: $mthread[author]{LF}發表時間: $mthread[date]{LF}瀏覽次數: $mthread[views] 次{LF}回覆次數: $mthread[replies] 次{LF}最後回覆: $mthread[lastreplytime]{LF}{lang lastpost}: $mthread[lastposter]'>$mthread[view_subject]</a></div>
                                                <!--{/loop}-->


完成∼

最後:請記得每次覆蓋或改寫文件後一定要更新緩存

[ 本帖最後由 5883988 於 2008-6-5 09:53 編輯 ]



 附件: 您所在的用戶組無法下載或查看附件



不要叫我大大~我今天大過了
http://www.neowu.net/bbs
 AL8 Forum © All rights reserved.
頂部
 墨于
 0100141
Rank: 1

頭銜: Newbie

帖子: 1

精華: 0

積分: 0 點

現金: 100 元

存款: 0 元

閱讀權限: 10

註冊: 2008-4-19

狀態: 離線
 
發表於 2008-5-26 07:47  資料  個人空間  短消息  加為好友 
喜歡, 馬上測試.

友情幫頂.
http://www.bobll.com

[ 本帖最後由 墨于 於 2008-5-26 07:51 編輯 ]




 AL8 Forum © All rights reserved.
頂部
 haocheng
 0094408
Rank: 1

頭銜: Newbie

帖子: 9

精華: 0

積分: 70 點

現金: 100 元

存款: 0 元

閱讀權限: 10

註冊: 2008-1-11

狀態: 離線
 
發表於 2008-5-26 21:35  資料  個人空間  短消息  加為好友 
樓主您好,你這個好像不適用 6.1 的,我剛照做了,但無法顯示任何文章,能請您修改看看嗎?




 AL8 Forum © All rights reserved.
頂部
 Vincent小健
 0099121
Rank: 3Rank: 3Rank: 3

頭銜: Conqueror

帖子: 244

精華: 0

積分: 1530 點

現金: 0 元

存款: 138 元

閱讀權限: 20

註冊: 2008-4-2

來自: 香港-恆世

狀態: 離線
 
發表於 2008-5-26 22:55  資料  個人空間  主頁 短消息  加為好友 

唔該曬你^^




 AL8 Forum © All rights reserved.
頂部
 5883988
 0040023
Rank: 4Rank: 4Rank: 4Rank: 4

頭銜: Lord

帖子: 347

精華: 0

積分: 2410 點

現金: 115 元

存款: 1000 元

閱讀權限: 25

註冊: 2006-2-14

來自: 嶺 東 學 園

狀態: 離線
 
發表於 2008-5-27 04:53  資料  個人空間  主頁 短消息  加為好友  添加 5883988 為MSN好友 通過MSN和 5883988 交談
回覆 #3 haocheng 的帖子

因為我還沒打算升 6.1 所以還沒研究如何改

我改過 5.0 5.5 6.0 測試都正常




不要叫我大大~我今天大過了
http://www.neowu.net/bbs
 AL8 Forum © All rights reserved.
頂部
 1234
 0000851
Rank: 2Rank: 2

頭銜: Member

帖子: 63

精華: 0

積分: 883 點

現金: 82 元

存款: 0 元

閱讀權限: 15

註冊: 2004-3-20

狀態: 離線
 
發表於 2008-5-27 18:47  資料  個人空間  短消息  加為好友 
推一下囉!感謝分享大大




 AL8 Forum © All rights reserved.
頂部
 chrislin2k
 0027005
Rank: 1

頭銜: Newbie

帖子: 23

精華: 0

積分: 280 點

現金: 100 元

存款: 0 元

閱讀權限: 10

註冊: 2005-7-24

來自: canada

狀態: 離線
 
發表於 2008-5-31 12:55  資料  個人空間  主頁 短消息  加為好友  ICQ 狀態
沒有成功
但還是很感謝您




 AL8 Forum © All rights reserved.
頂部
 Vincent小健
 0099121
Rank: 3Rank: 3Rank: 3

頭銜: Conqueror

帖子: 244

精華: 0

積分: 1530 點

現金: 0 元

存款: 138 元

閱讀權限: 20

註冊: 2008-4-2

來自: 香港-恆世

狀態: 離線
 
發表於 2008-6-3 17:50  資料  個人空間  主頁 短消息  加為好友 
唔錯@@
不過吾係好識




 AL8 Forum © All rights reserved.
頂部
 。貓B。
 0071968
Rank: 3Rank: 3Rank: 3

頭銜: Conqueror

帖子: 271

精華: 0

積分: 1810 點

現金: 0 元

存款: 716 元

閱讀權限: 20

註冊: 2007-4-3

來自: 貓王國

狀態: 離線
 
發表於 2008-6-4 13:47  資料  個人空間  短消息  加為好友 
這個好!! 謝了!!




永遠支持王傑
 AL8 Forum © All rights reserved.
頂部
 xbio
 0059359
Rank: 4Rank: 4Rank: 4Rank: 4
點擊查看 xbio 的詳細資料

頭銜: Lord

帖子: 330

精華: 0

積分: 3820 點

現金: 67 元

存款: 0 元

閱讀權限: 25

註冊: 2006-12-1

狀態: 離線
 
發表於 2008-6-4 16:30  資料  個人空間  短消息  加為好友 
測試過∼

沒有成功∼

但是很感謝你的分享!

大推!!!




快來喔!!
XBIO HOME
GOGO TAIWAN
 AL8 Forum © All rights reserved.
頂部
 5883988
 0040023
Rank: 4Rank: 4Rank: 4Rank: 4

頭銜: Lord

帖子: 347

精華: 0

積分: 2410 點

現金: 115 元

存款: 1000 元

閱讀權限: 25

註冊: 2006-2-14

來自: 嶺 東 學 園

狀態: 離線
 
發表於 2008-6-5 09:51  資料  個人空間  主頁 短消息  加為好友  添加 5883988 為MSN好友 通過MSN和 5883988 交談
回覆 #7 #9 #10 chrislin2k 。貓B。 xbio 的帖子

抱歉~上次忘記貼上第二個修改步驟! (所以只改index.php會沒有效果)

已補上修改discuz.htm或新增的foruminfo.htm的方法 (詳見第一帖)





不要叫我大大~我今天大過了
http://www.neowu.net/bbs
 AL8 Forum © All rights reserved.
頂部
 xbio
 0059359
Rank: 4Rank: 4Rank: 4Rank: 4
點擊查看 xbio 的詳細資料

頭銜: Lord

帖子: 330

精華: 0

積分: 3820 點

現金: 67 元

存款: 0 元

閱讀權限: 25

註冊: 2006-12-1

狀態: 離線
 
發表於 2008-6-5 14:47  資料  個人空間  短消息  加為好友 
回覆 #11 5883988 的帖子

感謝分享!

已經使用上!很簡單實用喔∼

演示網址
http://gogo-taiwan.org/bbs




快來喔!!
XBIO HOME
GOGO TAIWAN
 AL8 Forum © All rights reserved.
頂部
 5883988
 0040023
Rank: 4Rank: 4Rank: 4Rank: 4

頭銜: Lord

帖子: 347

精華: 0

積分: 2410 點

現金: 115 元

存款: 1000 元

閱讀權限: 25

註冊: 2006-2-14

來自: 嶺 東 學 園

狀態: 離線
 
發表於 2008-6-23 21:32  資料  個人空間  主頁 短消息  加為好友  添加 5883988 為MSN好友 通過MSN和 5883988 交談
回覆 #12 xbio 的帖子

多謝支持啊
因為之前自己很想要
所以就嘗試自己修改囉
希望大家有用到囉




不要叫我大大~我今天大過了
http://www.neowu.net/bbs
 AL8 Forum © All rights reserved.
頂部
 Audi
 0103707
Rank: 1

頭銜: Newbie

帖子: 17

精華: 0

積分: 190 點

現金: 100 元

存款: 0 元

閱讀權限: 10

註冊: 2008-6-23

狀態: 離線
 
發表於 2008-7-10 23:09  資料  個人空間  短消息  加為好友 
如果能顯示所屬區份就有些意思

純支持




 AL8 Forum © All rights reserved.
頂部
 fackabc75321
 0069302
Rank: 3Rank: 3Rank: 3

頭銜: Conqueror

帖子: 211

精華: 0

積分: 3280 點

現金: 0 元

存款: 381 元

閱讀權限: 20

註冊: 2007-3-8

狀態: 離線
 
發表於 2008-7-11 08:33  資料  個人空間  主頁 短消息  加為好友 
先謝謝大大分享!!

可是,
我回覆的分類在首頁6格上的顯示是錯的耶!!

請問要如何修改呢??

我安裝的是wowo的六格




 AL8 Forum © All rights reserved.
頂部
 5883988
 0040023
Rank: 4Rank: 4Rank: 4Rank: 4

頭銜: Lord

帖子: 347

精華: 0

積分: 2410 點

現金: 115 元

存款: 1000 元

閱讀權限: 25

註冊: 2006-2-14

來自: 嶺 東 學 園

狀態: 離線
 
發表於 2008-7-11 23:38  資料  個人空間  主頁 短消息  加為好友  添加 5883988 為MSN好友 通過MSN和 5883988 交談
回覆 #14 Audi 的帖子

分區鼠標提示就能看到了




不要叫我大大~我今天大過了
http://www.neowu.net/bbs
 AL8 Forum © All rights reserved.
頂部
 5883988
 0040023
Rank: 4Rank: 4Rank: 4Rank: 4