PHPBB3.0.X论坛首页显示 最新主题 及 最新回复 for prosilver风格
viewtopic.php?f=10&t=2295
最初来源 [url=http://www.phpbbchina.com/forum/viewtopic.php?f=12&t=3782&sid=159cb671501f1f1e1150696ee8fbc521:3thda77r]PHPBB论坛首页显示 论坛新帖 及 本周五大[/url:3thda77r]) 原作者为IOsetting 修改者为CRLin ,我仅仅做了functions_extra.php文件的SQL语句的简单修改
原来的修改调用了论坛新贴列表(包括有最新回复的帖子)和本周热门帖子,
下面的修改将在论坛首页增加最新主题和最新回复的帖子列表。
1,首先请您前往下面的网盘地址下载修改后的文件包
English ZIDDU web disk:[url:3thda77r]http://www.ziddu.com/download/10200599/latest.rar.html[/url:3thda77r]
訊6 - un6網絡硬盤:[url:3thda77r]http://www.xun6.com/file/c46e1e422/latest.rar.html[/url:3thda77r]
新浪iask网盘[url:3thda77r]http://ishare.iask.sina.com.cn/f/8140702.html[/url:3thda77r]
------------------------------------------
1,上传解压出来的 includes/functions_extra.php
到你论坛的 includes目录
2,上传解压出来的 styles/prosilver/theme/latest.css
到你论坛的 styles/prosilver/theme/目录
------------------------------------------
用文本编辑器 如记事本 打开index.php文件
1,搜索
[code]include($phpbb_root_path . 'common.' . $phpEx);[/code]
插入下面的代码
[code]include($phpbb_root_path . 'includes/functions_extra.' . $phpEx);[/code]
2,搜索
[code]$user->setup('viewforum');[/code]
插入下面的代码
[code]fill_mini_panel(5, 5);[/code]
------------------------------------------
用文本编辑器 如记事本 打开styles/prosilver/template/目录下的overall_header.html文件
搜索
[code]<link href=[/code]
[color=#FF0000]在它的前面插入下面的代码[/color]
[code]<link href="{T_THEME_PATH}/latest.css" rel="stylesheet" type="text/css" media="screen, projection" />[/code]