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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

个人美化容易被忽略的地方

[复制链接]
菁彩在线 发表于 2008-10-4 20:52:19 | 显示全部楼层 |阅读模式
举个例子 通常情况下 大家可能只修改了这个地方——>
但其它方式发帖 例如:
相信还是保留着原始状态的显示~

我将这个风格 修改了一下 新建了一个show.htm

把 美化的代码 写进show.htm里
再在viewthread.htm 、viewthread_activity.htm 、viewthread_debate.htm 、viewthread_poll.htm 、viewthread_reward.htm 、viewthread_trade.htm 、viewthread_video.htm  这些相关发帖模式的文件里调用show.htm里 {template show}

这样所有版面都正常显示了你所制定的个人信息美化



演示:http://www.jc-bar.cn
附上文件

[ 本帖最后由 菁彩在线 于 2008-10-4 20:54 编辑 ]

本帖子中包含更多资源

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

x

评分

2

查看全部评分

 楼主| 菁彩在线 发表于 2008-10-4 20:54:31 | 显示全部楼层
修改方法~

viewthread.htm里
  1.                                 <td class="postauthor">
  2.                                         $post[newpostanchor] $post[lastpostanchor]
  3.                                         <cite><!--{if $forum['ismoderator']}-->
  4.                                                 <!--{if $allowviewip && ($thread['digest'] >= 0 || !$post['first'])}--><label><a href="topicadmin.php?action=getip&amp;fid=$fid&amp;tid=$tid&amp;pid=$post[pid]" id="ajax_getip_$post[count]" onclick="ajaxmenu(event, this.id, 10000, null, 0)" title="{lang admin_getip}">IP</a></label><!--{/if}-->
  5.                                         <!--{/if}-->
  6.                                         <!--{if $post['authorid'] && $post['username'] && !$post['anonymous']}-->
  7.                                                 <a href="space.php?uid=$post[authorid]" target="_blank" id="userinfo$post[pid]" class="dropmenu" onmouseover="showMenu(this.id)">$post[author]</a></cite>
  8.                                                 <!--{if $post['nickname']}--><p>$post[nickname]</p><!--{/if}-->
  9.                                                 <!--{if $post['avatar'] && $showavatars}-->
  10.                                                         $post[avatar]
  11.                                                 <!--{/if}-->
  12.                                                 <p><em>$post[authortitle]</em></p>
  13.                                                 <p>{eval showstars($post['stars']);}</p>
  14.                                                 <!--{if $post['customstatus']}--><p class="customstatus">$post[customstatus]</p><!--{/if}-->
  15.                                                 <!--{if $customauthorinfo[1]}--><dl class="profile">{eval @eval('echo "'.$customauthorinfo[1].'";');}</dl><!--{/if}-->
  16.                                                 <!--{if $post['medals']}--><p>
  17.                                                         <!--{loop $post['medals'] $medal}-->
  18.                                                         <img src="images/common/$medal[image]" alt="$medal[name]" />
  19.                                                         <!--{/loop}--></p>
  20.                                                 <!--{/if}-->

  21.                                                 <ul>
  22.                                                 <!--{if $ucappopen['UCHOME']}-->
  23.                                                         <li class="space"><a href="{$uchomeurl}/space.php?uid=$post[authorid]" target="_blank">{lang space}</a></li>
  24.                                                 <!--{elseif $ucappopen['XSPACE']}-->
  25.                                                         <li class="space"><a href="{$xspaceurl}/?uid-$post[authorid]" target="_blank">{lang space}</a></li>
  26.                                                 <!--{/if}-->
  27.                                                 <li class="pm"><a href="###" onclick="pmwin('open', 'uid=$post[authorid]')">{lang send_pm}</a></li>
  28.                                                 <li class="buddy"><a href="my.php?item=buddylist&newbuddyid=$post[authorid]&buddysubmit=yes" target="_blank" id="ajax_buddy_$post['count']" onclick="ajaxmenu(event, this.id, 3000, 0)">{lang add_to_buddylist}</a></li>

  29.                                                 <!--{if $vtonlinestatus && $post['authorid']}-->
  30.                                                         <!--{if ($vtonlinestatus == 2 && $onlineauthors[$post[authorid]]) || ($vtonlinestatus == 1 && ($timestamp - $post['lastactivity'] <= 10800) && !$post['invisible'])}-->
  31.                                                                 <li class="online">{lang online}
  32.                                                         <!--{else}-->
  33.                                                                 <li class="offline">{lang offline}
  34.                                                         <!--{/if}-->
  35.                                                         </li>
  36.                                                 <!--{/if}-->

  37.                                                 </ul>
  38.                                         <!--{else}-->
  39.                                                 <!--{if !$post['authorid']}-->
  40.                                                         <a href="javascript:;">{lang guest} <em>$post[useip]</em></a></cite>
  41.                                                         {lang unregistered}
  42.                                                 <!--{elseif $post['authorid'] && $post['username'] && $post['anonymous']}-->
  43.                                                         <!--{if $forum['ismoderator']}--><a href="space.php?uid=$post[authorid]" target="_blank">{lang anonymous}</a><!--{else}-->{lang anonymous}<!--{/if}--></cite>
  44.                                                         {lang member_anonymous}
  45.                                                 <!--{else}-->
  46.                                                         $post[author]</cite>
  47.                                                         {lang member_deleted}
  48.                                                 <!--{/if}-->
  49.                                         <!--{/if}-->
  50.                                 </td>
复制代码
上面的代码为个人信息的原来方式~
调用的话改成~
  1. <td class="postauthor">                {subtemplate show}       
  2. </td>
复制代码
其中 show为你定义的个人信息美化文件show.htm

其它viewthread里的修改方法
  1.                 <td class="postauthor">
  2.                         $post[avatar]
  3.                         <dl>
  4.                                 <dt>{lang special_author}</dt><dd><a href="space.php?username=$post[author]" target="_blank">$post[author]</a></dd>
  5.                                 <dt>$post[authortitle]</dt><dd>&nbsp;</dd>
  6.                                 <dt>{eval showstars($post['stars']);}</dt><dd>&nbsp;</dd>
  7.                                 <dt>{lang activity_already}</dt><dd>$applynumbers {lang activity_member_unit}</dd>
  8.                         <!--{if $activity['number']}-->
  9.                                 <dt>{lang activity_about_member}</dt><dd>$aboutmembers {lang activity_member_unit}</dd>
  10.                         <!--{/if}-->
  11.                         </dl>
  12.                 <!--{if $post['msn'] || $post['qq'] || $post['icq'] || $post['yahoo'] || $post['taobao']}-->
  13.                 <p class="imicons">
  14.                         <!--{if $post['msn']}--><a target='_blank' href='http://settings.messenger.live.com/Conversation/IMMe.aspx?invitee=$post[msn]&mkt=zh-cn'><img style='border-style: none;' src='http://messenger.services.live.com/users/$post[msn]/presenceimage?mkt=zh-cn' width='16' height='16' /></a><!--{/if}-->
  15.                         <!--{if $post['qq']}--><a href="http://wpa.qq.com/msgrd?V=1&amp;Uin=$post[qq]&amp;Site=$bbname&amp;Menu=yes" target="_blank"><img src="{IMGDIR}/qq.gif" alt="QQ" /></a><!--{/if}-->
  16.                         <!--{if $post['icq']}--><a href="http://wwp.icq.com/scripts/search.dll?to=$post[icq]" target="_blank"><img src="{IMGDIR}/icq.gif" alt="ICQ" /></a><!--{/if}-->
  17.                         <!--{if $post['yahoo']}--><a href="http://edit.yahoo.com/config/send_webmesg?.target=$post[yahoo]&.src=pg" target="_blank"><img src="{IMGDIR}/yahoo.gif" alt="Yahoo!"  /></a><!--{/if}-->
  18.                         <!--{if $post['taobao']}--><script type="text/javascript">document.write('<a target="_blank" href="http://amos1.taobao.com/msg.ww?v=2&uid='+encodeURIComponent('$post[taobaoas]')+'&s=2"><img src="{IMGDIR}/taobao.gif" alt="{lang taobao}" /></a>');</script><!--{/if}-->
  19.                 </p>
  20.                 <!--{/if}-->
  21.                         <!--{if $customauthorinfo[3]}--><dl class="profile">{eval @eval('echo "'.$customauthorinfo[3].'";');}</dl><!--{/if}-->
  22.                 </td>
复制代码
修改成
  1.                 <td class="postauthor">
  2.                 {template show}



















  3.                 </td>
复制代码
大同小异~
希望各位都能完美自己的论坛~

[ 本帖最后由 菁彩在线 于 2008-10-4 21:04 编辑 ]
回复

使用道具 举报

滚骨碌 发表于 2008-10-4 20:57:36 | 显示全部楼层
最好有个安装教程啊
回复

使用道具 举报

滚骨碌 发表于 2008-10-4 21:02:41 | 显示全部楼层
能不能把红色的字改成其他颜色
回复

使用道具 举报

 楼主| 菁彩在线 发表于 2008-10-4 21:05:53 | 显示全部楼层
原帖由 滚骨碌 于 2008-10-4 21:02 发表
能不能把红色的字改成其他颜色

当然可以~show里面的代码 有字体颜色~
你可以把颜色的代码换成任意的颜色代码
回复

使用道具 举报

 楼主| 菁彩在线 发表于 2008-10-4 21:06:19 | 显示全部楼层
原帖由 滚骨碌 于 2008-10-4 20:57 发表
最好有个安装教程啊

安装教程已经跟上了~

评分

1

查看全部评分

回复

使用道具 举报

滚骨碌 发表于 2008-10-4 21:21:20 | 显示全部楼层
自行解决了~
感谢分享!

PS:那个交易积分是啥玩意?
网龄又是根据什么?
回复

使用道具 举报

滚骨碌 发表于 2008-10-4 21:24:15 | 显示全部楼层
看了一下 感觉不错!
体验过后继续恢复默认个人信息 收藏了呵呵
感谢

本帖子中包含更多资源

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

x
回复

使用道具 举报

90巴士 发表于 2008-10-4 21:24:39 | 显示全部楼层
还是看不懂...
回复

使用道具 举报

buachompoox 发表于 2008-10-5 00:19:35 | 显示全部楼层

回复 1# 菁彩在线 的帖子

thank you nice style
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-16 11:25 , Processed in 0.050597 second(s), 8 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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