第 1 頁 (共 1 頁)
[問題]PhpBB可在像MMUG首頁上方秀出最新貼出的五個主題嗎?
發表於 : 2004-12-03 16:04
由 goldmember
我喜歡\r
http://www.mmug.com.tw/forum/
裡上方那最新主題的區塊,
讓我覺得有
« 最新 5 個主題 » 熱門話題 最多討論
是不錯的設計!!
可是我不知道要怎樣設定才會讓PhpBB出現最新貼出的五個主題,
這是原始的設計嗎?
我該怎樣才能讓phpBB出現這樣的畫面,
謝謝喔
發表於 : 2004-12-03 16:16
由 Martinet
找 Top5 外掛
嗚呼哀哉博士寫的 oO]-[Oo
發表於 : 2004-12-03 16:21
由 9527
代碼: 選擇全部
##############################################################
## Mod Title: Top5 MOD
## Mod Version: 1.1.2
## Author: OOHOO < webdev@phpbb-tw.net > http://phpbb-tw.net/
##
## Description: Display the Last5/Top5/Hot5 topics.
##
##
## Installation Level: (easy)
## Installation Time: 1-5 Minutes
## Files To Edit: viewtopic.php, /templates/your_template/viewtopic_body.tpl,
## /language/your_lang/lang_main.php, templates/your_template/your_template.cfg
## Included Files: quick_reply.gif
##############################################################
## Security Disclaimer: This MOD Cannot Be Posted To Or Added At Any Non-Official phpBB Sites
#################################################################
##
## Author Note:
##
##############################################################
## Version History:
## 2.1.0 for phpBB 2.0.0 and gzip function include
## 2.0.0 for phpBB 2 RC serial
## 1.x.x for phpBB 2 Beta serial
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#################################################################
#
#-----[ ACTION: DOWNLOAD ]------------------------------------------
#
http://phpbb-tw.net/phpbb/download/adv_top5_mod_2.1.zip
#
#-----[ ACTION: UPLOAD ]------------------------------------------
#
adv_top5.php to /
adv_top5_body.tpl to /templates/your_template/
#
#-----[ ACTION: OPEN ]------------------------------------------
#
/templates/your_template/index_body.tpl
#
#-----[ ACTION: ADD (somewhere u prefer) ]------------------------------------------
#
<iframe marginwidth=0 marginheight=0 src='adv_top5.php' frameborder=0 width='100%' scrolling=no height=250>
</iframe>
#
#-----[ ACTION: SAVE & CLOSE FILE ]------------------------------------------
#
#
#-----[ ACTION: MOD SETTING ]------------------------------------------
#
#
#-----[ ACTION: OPEN ]------------------------------------------
#
adv_top5.php
#
#-----[ ACTION: CHANGE ]------------------------------------------
#
// Number of topics to be displayed
$MAX_TOPICS = 5;
// Security
// 0 => users can see all topics including authorized issue(but they cant read the posts)
// 1 => users can see only authorized topics
$AUTH_SECRUITY = 1;
#
#-----[ 註解 ]------------------------------------------
#
設定
// 顯示主題數
$MAX_TOPICS = 5;
// 安全防護選項
$AUTH_SECRUITY = 1;
在新版的 PHP 版本中,必須要修改
adv_top5.php
找到
// select mode
在這行之後貼上底下這行可以了
$mode=$HTTP_GET_VARS['mode'];
以 subSilver 為例,如果要把底色的灰色改成白色,請打?#125;
adv_top5_body.tpl
找到
{background-color: {T_BODY_BGCOLOR};}
改成
{background-color: #ffffff;}
儲存檔案後上傳覆蓋即可