Last Posts Titles (最後發表文章的主題)

phpBB3.0.x請盡早更新為phpBB3.2.x版,官方已停止更新
頭像
yehrussell
忍辱、精進、靜慮、般若波羅密
忍辱、精進、靜慮、般若波羅密
主題中的帖子: 3
文章: 1135
註冊時間: 2006-01-20 , 10:19
個人狀態: 非常忙碌中!
性別: 公仔

Last Posts Titles (最後發表文章的主題)

未閱讀文章 yehrussell »

Last Posts Titles (最後發表文章的主題) 官方認證外掛
http://phpbb-tw.net/phpbb/viewtopic.php?p=263610
由 心靈捕手 發表於 2008-02-14 22:43

檔頭說明:
Modification name: Last Posts Titles
Author: LEW21
Modification description: 顯示每個版面之最後發表文章的主題
Modification version: 1.0

檔案下載:
Last Posts Titles MOD.zip

--
資料來源:
http://www.phpbb.com/community/viewtopi ... 9&t=579026
六度梵行
頭像
yehrussell
忍辱、精進、靜慮、般若波羅密
忍辱、精進、靜慮、般若波羅密
主題中的帖子: 3
文章: 1135
註冊時間: 2006-01-20 , 10:19
個人狀態: 非常忙碌中!
性別: 公仔

Re: Last Posts Titles (最後發表文章的主題)

未閱讀文章 yehrussell »

Author
Username: LEW21
Email: lew21@phpbb3.pl
Name: Janusz Lewandowski

License
This MOD has been licensed under the following license:

http://opensource.org/licenses/gpl-license.php GNU General Public License v2

install.xml 這是設定檔程式

Files to Edit (需要編輯檔案)
includes/functions_display.php
先用程式編輯軟體打開上面functions_display.php

#
#Open: 打開 includes/functions_display.php
#
#Find 發現
#

代碼: 選擇全部

	$last_post_subject = $row['forum_last_post_subject'];
#
#Replace With 取代

代碼: 選擇全部

$last_post_subject = censor_text($row['forum_last_post_subject']);
Find 發現

代碼: 選擇全部

			'LAST_POST_SUBJECT'		=> censor_text($last_post_subject),
Replace With 取代

代碼: 選擇全部

			'LAST_POST_SUBJECT'		=> $last_post_subject,
			'LAST_POST_SHORTENED_SUBJECT'	=> (utf8_strlen($last_post_subject) > 26) ? truncate_string($last_post_subject, 25) . "\xE2\x80\xA6" : $last_post_subject,
Save all files. End of MOD 儲存程式後上傳

PS:記得備份喔!


prosilver.xml 這是prosilver 風格設定檔程式 {如果是subsilver2風格,請打開subsilver2.xml}
Files to Edit
編輯檔案 styles/prosilver/template/forumlist_body.html
進入後台樣板編輯

打開 Open: styles/prosilver/template/forumlist_body.html
發現 Find

代碼: 選擇全部

<!-- IF forumrow.LAST_POST_TIME --><dfn>{L_LAST_POST}</dfn>
In-line Find

代碼: 選擇全部

<dfn>{L_LAST_POST}</dfn>
同行發現 之後加上In-line Add after

代碼: 選擇全部

 <a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}">{forumrow.LAST_POST_SHORTENED_SUBJECT}</a><br />
#
#儲存後上傳
#

PS:記得備份喔!
六度梵行
頭像
yehrussell
忍辱、精進、靜慮、般若波羅密
忍辱、精進、靜慮、般若波羅密
主題中的帖子: 3
文章: 1135
註冊時間: 2006-01-20 , 10:19
個人狀態: 非常忙碌中!
性別: 公仔

Re: Last Posts Titles (最後發表文章的主題)

未閱讀文章 yehrussell »

Open: styles/subsilver2/template/forumlist_body.html
Find發現

代碼: 選擇全部

<p class="topicdetails">{forumrow.LAST_POST_TIME}</p>
Add before 之前加上

代碼: 選擇全部

<p class="topicdetails"><a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}">{forumrow.LAST_POST_SHORTENED_SUBJECT}</a></p>
六度梵行
版面鎖定 主題已鎖定

回到「phpBB3.0.x」