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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

Discuz! 6.1.0 阅读页面个人信息右侧显示!

[复制链接]
天-意 发表于 2008-8-6 13:12:19 | 显示全部楼层 |阅读模式
很简单的修改,只是移动下表格就可以了。
演示:http://ry168.net/bbs/thread-836-1-1.html
打开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&fid=$fid&tid=$tid&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. <!--{if $post['signature'] && !$post['anonymous'] && $showsignatures}-->
  2.                                         <div class="signatures" style="maxHeightIE: {$maxsigrows}px;">
  3.                                                 $post[signature]
  4.                                         </div>
  5.                                 <!--{/if}-->
  6.                         </td>
复制代码
在下面添加
  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&fid=$fid&tid=$tid&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">
  2.                                 <!--{if $post['authorid'] && $post['username'] && !$post['anonymous']}-->
  3.                                 <div class="popupmenu_popup userinfopanel" id="userinfo$post[pid]_menu" style="display: none;">
  4.                                         <!--{if $post['msn'] || $post['qq'] || $post['icq'] || $post['yahoo'] || $post['taobao']}-->
  5.                                         <div class="imicons">
  6.                                                 <!--{if $post['msn']}-->
  7.                                                         <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>
  8.                                                 <!--{/if}-->
  9.                                                 <!--{if $post['qq']}--><a href="http://wpa.qq.com/msgrd?V=1&Uin=$post[qq]&Site=$bbname&Menu=yes" target="_blank"><img src="{IMGDIR}/qq.gif" alt="QQ" /></a><!--{/if}-->
  10.                                                 <!--{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}-->
  11.                                                 <!--{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}-->
  12.                                                 <!--{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}-->
  13.                                         </div>
  14.                                         <!--{/if}-->
  15.                                         <dl>{eval @eval('echo "'.$customauthorinfo[2].'";');}</dl>
  16.                                         <!--{if $post['site']}-->
  17.                                                 <p><a href="$post[site]" target="_blank">{lang member_homepage}</a></p>
  18.                                         <!--{/if}-->
  19.                                         <p><a href="space.php?uid=$post[authorid]" target="_blank">{lang member_viewpro}</a></p>
  20.                                         <!--{if $allowedituser}-->
  21.                                                 <p><a href="{if $adminid == 1}admincp.php?action=members&username=$post[usernameenc]&submit=yes&frames=yes{else}modcp.php?action=members&op=edit&uid=$post[authorid]{/if}" target="_blank">{lang edit_member}</a></p>
  22.                                         <!--{/if}-->
  23.                                         <!--{if $allowbanuser}-->
  24.                                                 <p><a href="{if $adminid == 1}admincp.php?action=members&operation=ban&uid=$post[authorid]&membersubmit=yes&frames=yes{else}modcp.php?action=members&op=ban&uid=$post[authorid]{/if}" target="_blank">{lang ban_member}</a></p>
  25.                                         <!--{/if}-->
  26.                                 </div>
  27.                                 <!--{/if}-->
  28.                         </td>
复制代码
删除,搜索
  1. </p>
  2.                                         <!--{if $admode && empty($insenz['hardadstatus']) && !empty($advlist['thread1'][$post['count']])}--><div class="ad_textlink1" id="ad_thread1_$post[count]">$advlist[thread1][$post[count]]</div><!--{else}--><div id="ad_thread1_$post[count]"></div><!--{/if}-->
  3.                                 </div>
  4.                         </td>
复制代码
在下面添加
  1.                         <td class="postauthor">
  2.                                 <!--{if $post['authorid'] && $post['username'] && !$post['anonymous']}-->
  3.                                 <div class="popupmenu_popup userinfopanel" id="userinfo$post[pid]_menu" style="display: none;">
  4.                                         <!--{if $post['msn'] || $post['qq'] || $post['icq'] || $post['yahoo'] || $post['taobao']}-->
  5.                                         <div class="imicons">
  6.                                                 <!--{if $post['msn']}-->
  7.                                                         <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>
  8.                                                 <!--{/if}-->
  9.                                                 <!--{if $post['qq']}--><a href="http://wpa.qq.com/msgrd?V=1&Uin=$post[qq]&Site=$bbname&Menu=yes" target="_blank"><img src="{IMGDIR}/qq.gif" alt="QQ" /></a><!--{/if}-->
  10.                                                 <!--{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}-->
  11.                                                 <!--{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}-->
  12.                                                 <!--{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}-->
  13.                                         </div>
  14.                                         <!--{/if}-->
  15.                                         <dl>{eval @eval('echo "'.$customauthorinfo[2].'";');}</dl>
  16.                                         <!--{if $post['site']}-->
  17.                                                 <p><a href="$post[site]" target="_blank">{lang member_homepage}</a></p>
  18.                                         <!--{/if}-->
  19.                                         <p><a href="space.php?uid=$post[authorid]" target="_blank">{lang member_viewpro}</a></p>
  20.                                         <!--{if $allowedituser}-->
  21.                                                 <p><a href="{if $adminid == 1}admincp.php?action=members&username=$post[usernameenc]&submit=yes&frames=yes{else}modcp.php?action=members&op=edit&uid=$post[authorid]{/if}" target="_blank">{lang edit_member}</a></p>
  22.                                         <!--{/if}-->
  23.                                         <!--{if $allowbanuser}-->
  24.                                                 <p><a href="{if $adminid == 1}admincp.php?action=members&operation=ban&uid=$post[authorid]&membersubmit=yes&frames=yes{else}modcp.php?action=members&op=ban&uid=$post[authorid]{/if}" target="_blank">{lang ban_member}</a></p>
  25.                                         <!--{/if}-->
  26.                                 </div>
  27.                                 <!--{/if}-->
  28.                         </td>
复制代码
保存,覆盖即可!

[ 本帖最后由 天-意 于 2008-8-6 13:36 编辑 ]
拳头 发表于 2008-8-6 13:30:27 | 显示全部楼层
真够复杂的

评分

1

查看全部评分

回复

使用道具 举报

ifengshen 发表于 2008-8-6 13:32:42 | 显示全部楼层
毫无意义的工作
回复

使用道具 举报

 楼主| 天-意 发表于 2008-8-6 13:34:04 | 显示全部楼层
我的风格已经修改了,感觉满另类的!

不复杂,只是简单移动两个表格而已!
回复

使用道具 举报

 楼主| 天-意 发表于 2008-8-6 13:35:04 | 显示全部楼层

回复 3# ifengshen 的帖子

这个看个人喜爱了,头一次放在右侧,感觉还不错!
回复

使用道具 举报

kongjian14 发表于 2008-8-6 13:47:25 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

单莼! 发表于 2008-8-6 13:49:45 | 显示全部楼层
没看有什么地方美化了(::24::)

评分

1

查看全部评分

回复

使用道具 举报

c45645656 发表于 2012-7-10 15:20:58 | 显示全部楼层
个人 需求 不同而已~~~~   定LZ
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-10-1 20:17 , Processed in 0.113359 second(s), 21 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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