返回列表 发布新帖

【专用】首页板块横排美化 操作

7614 2
发表于 2008-5-31 01:34:22 | 查看全部 阅读模式
首页横排美化:

需要修改的有2个文件index.php和discuz.htm

1、打开index.php

查找
复制内容到剪贴板 代码:$newthreads = round(($timestamp - $lastvisit + 600) / 1000) * 1000;

在下面加上:
复制内容到剪贴板 代码:$hack_cut_str =60; // 这里修改标题长度
$fids = array();
if (file_exists("./forumdata/cache/cache_forums.php")){
require_once "./forumdata/cache/cache_forums.php";
if (is_array($_DCACHE['forums'])){
foreach ($_DCACHE['forums'] as $k => $v){
if (!strstr(',sub,forum,',','.$v['type'].',')) continue;
$fids[$k] = 5; // 这里是第一处调用条数需要和后面的设置一样。
}
}
}
if (count($fids) < 1){
$query = $db->query("SELECT fid FROM {$tablepre}forums WHERE type='forum' OR type='sub'");
while ($row = $db->fetch_array($query)){
$fids[$row['fid']] = 5; // 这里是第二处调用条数需要和前面的设置一样。
}
}
$limit_counts = 0;

foreach ($fids as $k => $v){
$sql .= "(SELECT t.*, f.name FROM {$tablepre}threads t LEFT JOIN {$tablepre}forums f ON f.fid = t.fid WHERE t.fid='$k' ORDER BY t.dateline DESC LIMIT $v) UNION ";
}
if ($sql){
$sql = substr($sql,0,strlen($sql)-6);
}
$query = $db->query($sql);
while ($row = $db->fetch_array($query)){
$row['view_subject'] = cutstr($row['subject'],$hack_cut_str);
$row['date']= gmdate("$dateformat", $row['dateline'] + $timeoffset * 3600);
if($row['highlight']) {
$string = sprintf('%02d', $row['highlight']);
$stylestr = sprintf('%03b', $string[0]);
$row['highlight'] = 'style="';
$row['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
$row['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
$row['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
$row['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
$row['highlight'] .= '"';
} else {
$row['highlight'] = '';
}
${'new_no'.$row['fid'].'_threadlist'}[] = $row;
}
//帖子调用结束


   (其实模版已定义了超出宽度要隐藏, 所以下面的标题长度可以不用改小)
    要调用几条新主题,可以自己改数值,要改两处哦
    附件背景图 listbg_li.gif 支持到7行,超过7行就请自行改图了



2、打开discuz.htm
a. 先找到
  <!--{loop $catlist $key $cat}-->
b. 再往下找
  <!--{/loop}-->
  <!--{if $_DCACHE['forumlinks']}-->

将a到b的这一大段:

  <!--{loop $catlist $key $cat}-->
  
....(中间一段省略)

  <!--{/loop}-->
  <!--{if $_DCACHE['forumlinks']}-->



替换为如下代码:
复制内容到剪贴板 代码:<!--{loop $catlist $key $cat}-->
<!--{if $cat['forumscount']}-->
<div class="mainbox forumlist">
<span class="headactions">
<!--{if $cat['moderators']}-->{lang forum_category_modedby}: $cat[moderators]<!--{/if}-->
<img id="category_$cat[fid]_img" src="{IMGDIR}/$cat[collapseimg]" title="{lang spread}" alt="{lang spread}" />
</span>
<h3><a href="$indexname?gid=$cat[fid]">$cat[name]</a></h3>
<table id="category_$cat[fid]" summary="category$cat[fid]" cellspacing="0" cellpadding="0" style="$collapse['category_'.$cat[fid]]">
<!--{if !$cat['forumcolumns']}-->
<thead class="category">
<tr>
<th>{lang forum_name}</th>
<td class="nums">{lang forum_threads}</td>
<td class="nums">{lang forum_posts}</td>
<td class="lastpost">{lang forum_lastpost}</td>
</tr>
</thead>
<!--{loop $cat[forums] $forumid}-->
<!--{eval $forum=$forumlist[$forumid];}-->
<tbody id="forum$forum[fid]">
<tr>
<th$forum[folder]>
$forum[icon]
<h2><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a><!--{if $forum[todayposts] && !$forum['redirect']}--><em> ({lang index_today}: $forum[todayposts])</em><!--{/if}--></h2>
<!--{if $forum[description]}--><p>$forum[description]</p><!--{/if}-->
<!--{if $forum['subforums']}--><p>{lang forum_subforums}: $forum['subforums']</p><!--{/if}-->
<!--{if $forum['moderators']}--><!--{if $moddisplay == 'flat'}--><p class="moderators">{lang forum_moderators}: $forum[moderators]</p><!--{else}--><span class="dropmenu" id="mod$forum[fid]">{lang forum_moderators}</span><ul class="moderators popupmenu_popup" id="mod$forum[fid]_menu" style="display: none">$forum[moderators]</ul><!--{/if}--><!--{/if}-->
</th>
<td class="nums">{if $forum['redirect']}--{else}$forum[threads]{/if}</td>
<td class="nums">{if $forum['redirect']}--{else}$forum[posts]{/if}</td>
<td class="lastpost">
<!--{if $forum['permission'] == 1}-->
{lang private_forum}
<!--{else}-->
<!--{if $forum['redirect']}-->
--
<!--{elseif is_array($forum['lastpost'])}-->
<a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost">{echo cutstr($forum[lastpost][subject], 40)}</a>
<cite>{lang forum_lastpost_by} <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author']<!--{else}-->{lang anonymous}<!--{/if}--> - $forum[lastpost][dateline]</cite>
<!--{else}-->
{lang never}
<!--{/if}-->
<!--{/if}-->
</td>
</tr>
</tbody>
<!--{/loop}-->
<!--{else}-->
<thead class="category" align="center">

</thead>
<!--{loop $cat['forums'] $forumid}-->
<!--{eval $forum=$forumlist[$forumid];}-->
<!--{if $forum['orderid'] && ($forum['orderid'] % $cat['forumcolumns'] == 0)}-->
</tr></tbody>
<!--{if $forum['orderid'] < $cat['forumscount']}-->
<tbody><tr>
<!--{/if}-->
<!--{/if}-->
<th class="forumlist" width="$cat[forumcolwidth]" style="vertical-align: top; background-image: none; padding:8px !important;">
<div style="width:100%; "><div style="float:left; "><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a></div><div style="float:right; "><A title="依发布时间排序主题 [进入本版]"
href="forumdisplay.php?fid=$forum[fid]&filter=0&orderby=dateline&ascdesc=DESC&sid=7A2NNH"><IMG
src="images/dateline_url.gif"></A>
<IMG class=hand title="最后发表.版主 [收/展]"
onclick="toggle_collapse('lastpost_$forum[fid]');"
src="images/master.gif"> <IMG
class=hand title="查看版主 [展/收]"
src="images/dateline.gif">
<!--{if $forum[todayposts]}-->

<!--{else}-->

<!--{/if}--></div></div>
<span style="float:left">$forum[icon]</span><span style="float:left; color:{LIGHTTEXT}">$forum[description]</span>
<ul class="list" style="background-image: url(images/listbg_li.gif); padding:1px 2px 0px 10px; list-style-type: none; line-height: 20px; clear: both; margin:8px 0; ">
<!--{loop ${"new_no".$forum[fid]."_threadlist"} $row}-->
<div style="overflow: hidden; height:20px; width:100%"><small style="float:right; color:#9C8B88; margin: 0 0 0 5px">$row['date']</small><a href="viewthread.php?tid=$row[tid]" title="$row[subject]" target='_self'>$row[view_subject]</a></div>
<!--{/loop}-->
</ul>
<div id="lastpost_$forum[fid]">
<div style="color:{LIGHTTEXT}; overflow: hidden; height: 20px; width: 100%" >
<!--{if is_array($forum['lastpost'])}-->
{lang forum_lastpost}: <a style="color:{LIGHTTEXT}" href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost" title="$forum[lastpost][subject] ($forum[lastpost][dateline])">{echo cutstr($forum[lastpost][subject], 35)}</a>
({lang forum_lastpost_by} <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author'])<!--{else}-->{lang anonymous}<!--{/if}-->
<!--{else}-->
{lang never}
<!--{/if}-->
</div>
<div style="text-align: left; color:{LIGHTTEXT}">
{lang forum_threads}:{if $forum['redirect']}--{else}$forum[threads]{/if},
{lang forum_posts}:{if $forum['redirect']}--{else}$forum[posts]{/if},
<!--{if $forum[todayposts]}-->{lang index_today}:$forum[todayposts],<!--{else}-->{lang index_today}:0<!--{/if}-->
</div></div>



<ul id="dateline_$forum[fid]" style="DISPLAY: none; background-image: url(images/listbg_lz.gif); padding:1px 2px 0px 10px; list-style-type: none; line-height: 20px; clear: both; margin:8px 0; ">
<div style="overflow: hidden; height:35px; width:100%">
<!--{if $forum['moderators']}--><!--{if $moddisplay == 'flat'}-->
<p class="moderators">{lang forum_moderators}: $forum[moderators]</p>
<!--{else}-->
<span class="dropmenu" id="mod$forum[fid]">{lang forum_moderators}</span>
<ul class="moderators popupmenu_popup" id="mod$forum[fid]_menu" style="display: none">$forum[moderators]</ul>
<!--{/if}--><!--{/if}-->
</div>

</ul>
</th>
<!--{/loop}-->
$cat['endrows']

<!--{/if}-->
</table>
</div>
<!--{if $admode && empty($insenz['hardadstatus']) && !empty($advlist['intercat']) && ($advlist['intercat'][$key] = array_merge(($advlist['intercat'][0] ? $advlist['intercat'][0] : array()), ($advlist['intercat'][$key] ? $advlist['intercat'][$key] : array())))}--><div class="ad_column" id="ad_intercat_$key"><!--{echo $advitems[$advlist['intercat'][$key][array_rand($advlist['intercat'][$key])]]}--></div><!--{else}--><div id="ad_intercat_$key"></div><!--{/if}-->
<!--{/if}-->
<!--{/loop}-->

<!--{if $_DCACHE['forumlinks']}-->
3、上传附件到论坛根目录

4、后台设置论坛版块为横排 (设置下级子版块横排时每行版块数量,如果设置为 0,则按正常方式排列

5、更新缓存。

图片文件如下:

附件已删除!

评论2

admin楼主Lv.9 发表于 2008-5-31 01:36:44 | 查看全部
本操作共更改了 index.php文件和discuz.htm文件,并对之进行了备份。

备份文件名为discuz1.htm和index1.php:lol
沙玛阿布Lv.9 发表于 2008-5-31 17:14:49 | 查看全部
这个不错!

回复

您需要登录后才可以回帖 登录 | 邀请注册

本版积分规则

关闭

站长推荐上一条 /1 下一条

投诉/建议联系

ceo@yizu.co

未经授权禁止转载,复制和建立镜像,
如有违反,追究法律责任
  • 关注公众号
  • 添加微信客服
Copyright © 2007-2025 中国彝族网 版权所有 All Rights Reserved. Powered by Dz!X3.5 黔ICP备2021008899号-1
关灯 在本版发帖
扫一扫添加微信客服
QQ客服返回顶部
快速回复 返回顶部 返回列表