Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[美化] 首页/子版显示最后发表/回复主题内容for4.0

[复制链接]
爱好者 发表于 2005-12-17 23:18:38 | 显示全部楼层 |阅读模式
########################
作者:oytktk
整理:爱好者
难易:易
适用:D4
#########################

++++++++修改开始++++++++++

index.htm模板,查找:

  1.                         <!--{if is_array($forum['lastpost'])}-->
  2.                                 <td class="altbg2"><table cellpadding="0" cellspacing="0" border="0" width="100%">
  3.                                 <tr><td align="right" class="smalltxt" title="{lang forum_lastpost_in}: $forum[lastpost][subject]" nowrap>
  4.                                 $forum[lastpost][dateline]<br>{lang forum_lastpost_by} <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author']<!--{else}-->{lang guest}<!--{/if}--></td>
  5.                                 <td nowrap> <a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost"><img src="{IMGDIR}/lastpost.gif" border="0"></a></td>
  6.                                 </tr></table></td>
  7.                         <!--{else}-->
复制代码


替换成:

  1. <!--{if is_array($forum['lastpost'])}--><td class="altbg2" height="52"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" class="smalltxt" title="发布时间: $forum[lastpost][dateline]{LF}完整标题: $forum[lastpost][subject]" nowrap>标题: <a title="发布时间: $forum[lastpost][dateline]{LF}完整标题: $forum[lastpost][subject]" href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost">$forum[lastpost][subjectsc]</a><br>时间: <a title="发布时间: $forum[lastpost][dateline]{LF}完整标题: $forum[lastpost][subject]" href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost">$forum[lastpost][dateline]</a><br>作者: <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author']<!--{else}-->{lang guest}<!--{/if}--></td></tr></table></td><!--{else}-->
复制代码


查找:

  1.                 <td width="5%"> </td>
  2.                 <td width="51%">{lang forum_name}</td>
  3.                 <td width="5%">{lang forum_threads}</td>
  4.                 <td width="5%">{lang forum_posts}</td>
  5.                 <td width="5%">{lang forum_todayposts}</td>
  6.                 <td width="13%">{lang forum_lastpost}</td>
  7.                 <td width="16%">{lang forum_moderators}</td>
复制代码


替换成:

  1.                 <td width="5%"> </td>
  2.                 <td width="48%">{lang forum_name}</td>
  3.                 <td width="5%">{lang forum_threads}</td>
  4.                 <td width="5%">{lang forum_posts}</td>
  5.                 <td width="5%">{lang forum_todayposts}</td>
  6.                 <td width="16%">{lang forum_lastpost}</td>
  7.                 <td width="16%">{lang forum_moderators}</td>
复制代码


这个可以根据你自己的情况修改。

include/forum.func.php,查找:

  1.                 $lastpost['dateline'] = gmdate("$dateformat $timeformat", $lastpost['dateline'] + $timeoffset * 3600);
复制代码


下面添加:

  1.                 $lastpost['subjectsc'] = cutstr($lastpost['subject'], 23);
复制代码


以上23数值是标题的长度。

============================

以下是子版的修改

============================

编辑模板 - forumdisplay_subforum.htm
查找
  1. <!--{if is_array($sub['lastpost'])}-->
  2.                                 <td class="altbg2"><table cellpadding="0" cellspacing="0" border="0" width="100%">
  3.                                 <tr><td align="right" class="smalltxt" title="{lang forum_lastpost_in}: $sub[lastpost][subject]" nowrap>
  4.                                 $sub[lastpost][dateline]<br>{lang forum_lastpost_by} <!--{if $sub['lastpost']['author']}-->$sub['lastpost']['author']<!--{else}-->{lang guest}<!--{/if}--></td>
  5.                                 <td nowrap> <a href="redirect.php?tid=$sub[lastpost][tid]&goto=lastpost#lastpost"><img src="{IMGDIR}/lastpost.gif" border="0"></a></td>
  6.                                 </tr></table></td>
  7.                         <!--{else}-->
复制代码


替换成

  1. <!--{if is_array($sub['lastpost'])}--><td class="altbg2" height="52"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" class="smalltxt" title="发布时间: $sub[lastpost][dateline]{LF}完整标题: $sub[lastpost][subject]" nowrap>标题: <a title="发布时间: $sub[lastpost][dateline]{LF}完整标题: $sub[lastpost][subject]" href="redirect.php?tid=$sub[lastpost][tid]&goto=lastpost#lastpost">$sub[lastpost][subjectsc]</a><br>时间: <a title="发布时间: $sub[lastpost][dateline]{LF}完整标题: $sub[lastpost][subject]" href="redirect.php?tid=$sub[lastpost][tid]&goto=lastpost#lastpost">$sub[lastpost][dateline]</a><br>作者: <!--{if $sub['lastpost']['author']}-->$sub['lastpost']['author']<!--{else}-->{lang guest}<!--{/if}--></td></tr></table></td><!--{else}-->
复制代码


找到
      
  1. <td width="5%"> </td>
  2.                 <td width="51%">{lang forum_name}</td>
  3.                 <td width="5%">{lang forum_threads}</td>
  4.                 <td width="5%">{lang forum_posts}</td>
  5.                 <td width="5%">{lang forum_todayposts}</td>
  6.                 <td width="13%">{lang forum_lastpost}</td>
  7.                 <td width="16%">{lang forum_moderators}</td>
复制代码

替换成
      
  1. <td width="5%"> </td>
  2.                 <td width="48%">{lang forum_name}</td>
  3.                 <td width="5%">{lang forum_threads}</td>
  4.                 <td width="5%">{lang forum_posts}</td>
  5.                 <td width="5%">{lang forum_todayposts}</td>
  6.                 <td width="16%">{lang forum_lastpost}</td>
  7.                 <td width="16%">{lang forum_moderators}</td>
复制代码


+++++++++++++修改完成+++++++++++++

[ 本帖最后由 爱好者 于 2006-4-21 03:25 编辑 ]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

评分

1

查看全部评分

咕咕 发表于 2005-12-17 23:28:21 | 显示全部楼层
不好意思 没看出来
回复

使用道具 举报

soryuden 发表于 2005-12-17 23:30:14 | 显示全部楼层
用上了,很不错的说
谢谢哦
回复

使用道具 举报

jimmyjimmyqqq 发表于 2005-12-17 23:34:44 | 显示全部楼层
泡哥發過了!
回复

使用道具 举报

whitegerry 发表于 2005-12-17 23:37:14 | 显示全部楼层
汗,早上才看到的,晚上又出来一道,呵呵
回复

使用道具 举报

 楼主| 爱好者 发表于 2005-12-17 23:37:22 | 显示全部楼层

回复 #4 jimmyjimmyqqq 的帖子

我知道,你仔细看我这是加了子版的。
回复

使用道具 举报

 楼主| 爱好者 发表于 2005-12-17 23:38:21 | 显示全部楼层

回复 #2 咕咕 的帖子

图片里有演示
回复

使用道具 举报

 楼主| 爱好者 发表于 2005-12-17 23:49:17 | 显示全部楼层
唉,都不仔细看啊,如果我发重了,那斑竹删了吧。
回复

使用道具 举报

freddy 发表于 2005-12-18 00:24:00 | 显示全部楼层
不错!oytktk兄弟的代码现在很多人在用~佩服他老人家啊!
楼主整理辛苦鸟!!!
回复

使用道具 举报

比翼鸟 发表于 2005-12-18 00:28:56 | 显示全部楼层
很不错哦~
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-22 04:22 , Processed in 0.033153 second(s), 5 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表