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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[发布] 个人信息美化----For Dz6.1.0正式版(完美正式版)+(冇边框正式版)[GBK/UTF-8]

[复制链接]
shun21 发表于 2008-4-26 11:07:10 | 显示全部楼层 |阅读模式
本帖最后由 shun21 于 2009-8-31 19:44 编辑

适用版本:Discuz!6.1.0
适用语言:简体中文GBK/UTF-8
作  者:Shun21
美  化:Shun21
模版修改:register.php、register.htm、viewthread.htm
安装难易:易
技术支持:www.laxing.net(送個IP)

QQ秀改伸缩模式,在线状态改为男女小头像,三种色区分性别,添加在线时间和失踪天数,美化签名下的广告.....

一楼:QQ秀展开或刪除方法、添加中...

二楼:GBK版--手动安装方法

三楼:UTF-8版--手动安装方法
04.27更新----修正IE7下用户名一半问题!!~还有一个BUG问题!
.....BY Shun21版权所有.....


注:演讲站还没升级6.1.0版本...
只不这过分享给大家哦~!请大家多多支持小弟哦~~
如果有什么问题请联系本人QQ:413215473(注明:个人信息美化)




--------------------------------------------------------------------------------

91免费电影院----------http://dy.laxing.net

极品桌面壁纸站--------http://mm.laxing.net

Flash小游戏网---------http://flash.laxing.net

IN-非主流--------------http://fzl.laxing.net

绿色软件下载站--------http://soft.laxing.net

BT影视资讯网----------http://bt.laxing.net

爱搜音乐网-------------http://mp3.laxing.net

在线MTV网-------------http://mtv.laxing.net

白领小说网-------------http://book.laxing.net

LaXing Music---------http://dj.laxing.net

---------------------------------完美正式版---------------------------------



--------------------------------冇边框正式版--------------------------------



--------------------------------------------------------------------------------



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

注: 如果不要或自动展开QQ秀安以下方法做!!~

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

templates/default/snshow.htm(附件文件)

-----------------------------------------------------------------------------
去除QQ秀方法:
-----------------------------------------------------------------------------

查找
  1.                         <fieldset style="width: 99%; border: 1px double; color: {COMMONBOXBORDER}">
  2.                          <legend align="center">&nbsp;<span id="$post[pid]" onclick="flip(ud_$post[pid], document.images.img_$post[pid])"><IMG src="./images/sn-post/qqshow_1.gif" alt="点击打开/关闭$post[author]的QQ秀" id="img_$post[pid]"></span>&nbsp;</legend>
  3.                           <div id="ud_$post[pid]" style="display:none" align="center">
  4.                           <!--{if $post['qq']}-->
  5.                           <CENTER><img src="http://qqshow-user.tencent.com/$post[qq]/10/00/" border=0 alt="$post[qq]"></CENTER>
  6.                           <!--{else}-->
  7.                           <a href="memcp.php?action=profile" title="登记QQ秀"><font color="#CC00FF">你的QQ号为空!<br>请填写QQ号!</font></a>
  8.                           <!--{/if}-->
  9.                         </div></fieldset>
复制代码
删除,还有不用改第1和第2步还有第3的①步!!~

-----------------------------------------------------------------------------
QQ秀自动展开方法:
-----------------------------------------------------------------------------

查找
  1. <div id="ud_$post[pid]" style="display:none" align="center">
复制代码
替换为
  1. <div id="ud_$post[pid]" style="display:block" align="center">
复制代码
[ 本帖最后由 shun21 于 2008-4-28 16:03 编辑 ]

本帖子中包含更多资源

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

x

评分

4

查看全部评分

 楼主| shun21 发表于 2008-4-26 11:08:08 | 显示全部楼层
==========================================================================

GBK版--安装方法:

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

1、修改register.php(主目录下文件)

①查找:
  1.         if($password != $password2) {
  2.                 showmessage('profile_passwd_notmatch');
  3.         }
复制代码
下面加:
  1.         if($qq = preg_match("/^([0-9]+)$/", $qq) && strlen($qq) >= 5 && strlen($qq) <= 12 && intval($qq) > 0  ? $qq : '') {
  2.         } else {
  3.                 showmessage('请填写QQ号码,返回重新填写','javascript:history.back()');
  4.         }
复制代码
2、templates/default/register.htm(模块文件)

①查找:
  1.                 <tr>
  2.                         <th><label for="password2">{lang password_confirm} *</label></th>
  3.                         <td>
  4.                                 <input type="password" name="password2" size="25" id="password2" onBlur="checkpassword2()" tabindex="5" />
  5.                                 <span id="checkpassword2"> </span>
  6.                         </td>
  7.                 </tr>
复制代码
下面加:
  1.                 <tr>
  2.                         <th><label for="qq">QQ *</label></th>
  3.                         <td><input type="text" id="qq" name="qq" size="25" tabindex="23" /></td>
  4.                 </tr>
复制代码
②再查找:
  1.                 <tr>
  2.                         <th><label for="qq">QQ</label></th>
  3.                         <td><input type="text" id="qq" name="qq" size="25" tabindex="23" /></td>
  4.                 </tr>
复制代码
把以上代码删掉!!(删除高级选项里的)


3、templates/default/viewthread.htm(模块文件)

①查找:
  1. {eval $postcount = 0;}
复制代码
下面加:
  1. <SCRIPT>
  2. <!--
  3. function flip(ud, img) {
  4. if (ud.style.display == "block") {
  5. ud.style.display="none";
  6. img.src = './images/sn-post/qqshow_1.gif';
  7. }else{
  8. ud.style.display="block";
  9. img.src = './images/sn-post/qqshow_2.gif';
  10. }
  11. }
  12. // -->
  13. </SCRIPT>
复制代码
②查找:
  1.                                 <td class="postauthor">
  2.                                         $post[newpostanchor] $post[lastpostanchor]
  3.                                         <cite><!--{if $forum['ismoderator']}-->
  4.                                  '
  5.                                  '
  6.                               一直到
  7.                                  '
  8.                                  '
  9.                                                 <!--{else}-->
  10.                                                         $post[author]</cite>
  11.                                                         {lang member_deleted}
  12.                                                 <!--{/if}-->
  13.                                         <!--{/if}-->
  14.                                 </td>
复制代码
改为:
  1.                                         {template snshow}
复制代码
③再查找:
  1.                                         <div class="postinfo">
  2.                                                 <strong title="{lang post_copylink}" id="postnum$post[pid]" onclick="setcopy('{$boardurl}viewthread.php?tid=$tid&page=$page$fromuid#pid$post[pid]', '{lang post_copied}')"><!--{if !empty($postno[$post[number]])}-->$postno[$post[number]]<!--{else}-->{$post[number]}{$postno[0]}<!--{/if}--></strong>
  3.                                                 <!--{if MSGBIGSIZE || MSGSMALLSIZE}-->
  4.                                                         <!--{if MSGBIGSIZE}--><em onclick="$('postmessage_$post[pid]').className='t_bigfont'">{lang big}</em><!--{/if}-->
  5.                                                         <em onclick="$('postmessage_$post[pid]').className='t_msgfont'">{lang middle}</em>
  6.                                                         <!--{if MSGSMALLSIZE}--><em onclick="$('postmessage_$post[pid]').className='t_smallfont'">{lang small}</em><!--{/if}-->
  7.                                                 <!--{/if}-->
  8.                                                 <!--{if $thread['price'] >= 0 || $post['first']}-->{lang poston} $post[dateline]&nbsp;<!--{/if}-->
  9.                                                 <!--{if $post['authorid'] && !$post['anonymous']}-->
  10.                                                         <!--{if !$authorid}-->
  11.                                                                 <a href="viewthread.php?tid=$post[tid]&page=$page&authorid=$post[authorid]" rel="nofollow">{lang thread_show_author}</a>
  12.                                                         <!--{else}-->
  13.                                                                 <a href="viewthread.php?tid=$post[tid]&page=$page" rel="nofollow">{lang thread_show_all}</a>
  14.                                                         <!--{/if}-->
  15.                                                 <!--{/if}-->
  16.                                         </div>
复制代码
改为:
  1.                                         <div class="postinfo">
  2.                                                 <strong title="{lang post_copylink}" id="postnum$post[pid]" onclick="setcopy('{$boardurl}viewthread.php?tid=$tid&page=$page$fromuid#pid$post[pid]', '{lang post_copied}')"><!--{if !empty($postno[$post[number]])}-->$postno[$post[number]]<!--{else}-->{$post[number]}{$postno[0]}<!--{/if}--></strong>
  3.                                                 <!--{if MSGBIGSIZE || MSGSMALLSIZE}-->
  4.                                                         <!--{if MSGBIGSIZE}--><em onclick="$('postmessage_$post[pid]').className='t_bigfont'">{lang big}</em><!--{/if}-->
  5.                                                         <em onclick="$('postmessage_$post[pid]').className='t_msgfont'">{lang middle}</em>
  6.                                                         <!--{if MSGSMALLSIZE}--><em onclick="$('postmessage_$post[pid]').className='t_smallfont'">{lang small}</em><!--{/if}-->
  7.                                                 <!--{/if}-->
  8.                                                 <!--{if $thread['price'] >= 0 || $post['first']}-->{lang poston} $post[dateline]&nbsp;<!--{/if}-->
  9.                                                 <!--{if $post['authorid'] && !$post['anonymous']}-->
  10.                                                         <!--{if !$authorid}-->
  11.                                                                 <a href="viewthread.php?tid=$post[tid]&page=$page&authorid=$post[authorid]" rel="nofollow">{lang thread_show_author}</a>
  12.                                                         <!--{else}-->
  13.                                                                 <a href="viewthread.php?tid=$post[tid]&page=$page" rel="nofollow">{lang thread_show_all}</a>
  14.                                                         <!--{/if}-->
  15.                                                 <!--{/if}-->
  16.                                                 <a href="###" onclick="pmwin('open', 'uid=$post[authorid]')">{lang send_pm}</a>
  17.                                                 <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>
  18.                                                 <a href="{$uchomeurl}/space.php?uid=$post[authorid]" target="_blank">{lang space}</a>
  19.                                         </div>
复制代码
④再查找:
  1.                                                                 </fieldset>
  2.                                                         <!--{else}-->
  3.                                                                 <div id="post_rate_div_$post[pid]"></div>
  4.                                                         <!--{/if}-->
  5.                                         <!--{/if}-->
  6.                                 </div>
  7.                                 <!--{if $post['signature'] && !$post['anonymous'] && $showsignatures}-->
  8.                                         <div class="signatures" style="maxHeightIE: {MAXSIGROWS}px;">
  9.                                                 $post[signature]
  10.                                         </div>
  11.                                 <!--{/if}-->
  12.                         </td>
  13.                 </tr>
  14.                 <tr>
  15.                         <td class="postauthor">
复制代码
改为:
  1.                                                                 </fieldset>
  2.                                                         <!--{else}-->
  3.                                                                 <div id="post_rate_div_$post[pid]"></div>
  4.                                                         <!--{/if}-->
  5.                                                 </div>
  6.                                         <!--{/if}-->
  7.                                 </div>
  8.                         </td>
  9.                 </tr>
  10.                 <tr><td style="vertical-align:bottom;border:0;">
  11.                                         <!--{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}-->
  12.                 </td></tr>
  13.                 <tr><td style="vertical-align:bottom;border:0;">
  14.                                         <!--{if $post['signature'] && !$post['anonymous'] && $showsignatures}-->
  15.                                                 <div class="signatures" style="maxHeightIE: {$maxsigrows}px;">
  16.                                                         $post[signature]
  17.                                                 </div>
  18.                                         <!--{/if}-->
  19.                 </td></tr>
  20.                 <tr>
  21.                         <td class="postauthor" rowspan="2">
复制代码
⑤再查找:
  1.                                         <!--{if $post['msn'] || $post['qq'] || $post['icq'] || $post['yahoo'] || $post['taobao']}-->
  2.                                         <div class="imicons">
  3.                                                 <!--{if $post['msn']}-->
  4.                                                         <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>
  5.                                                 <!--{/if}-->
  6.                                                 <!--{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}-->
  7.                                                 <!--{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}-->
  8.                                                 <!--{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}-->
  9.                                                 <!--{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}-->
  10.                                         </div>
  11.                                         <!--{/if}-->
  12.                                         <dl>{eval @eval('echo "'.$customauthorinfo[2].'";');}</dl>
复制代码
把以上代码删掉!!

⑥再查找:
  1.                                         <!--{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}-->
复制代码
把以上代码删掉!!

4、上传附件....更新....完成!!!

[ 本帖最后由 shun21 于 2008-4-28 15:47 编辑 ]

本帖子中包含更多资源

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

x
回复

使用道具 举报

 楼主| shun21 发表于 2008-4-26 11:09:08 | 显示全部楼层
==========================================================================

UTF-8版--安装方法:

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

1、修改register.php(主目录下文件)

①查找:
  1.         if($password != $password2) {
  2.                 showmessage('profile_passwd_notmatch');
  3.         }
复制代码
下面加:
  1.         if($qq = preg_match("/^([0-9]+)$/", $qq) && strlen($qq) >= 5 && strlen($qq) <= 12 && intval($qq) > 0  ? $qq : '') {
  2.         } else {
  3.                 showmessage('请填写QQ号码,返回重新填写','javascript:history.back()');
  4.         }
复制代码
2、templates/default/register.htm(模块文件)

①查找:
  1.                 <tr>
  2.                         <th><label for="password2">{lang password_confirm} *</label></th>
  3.                         <td>
  4.                                 <input type="password" name="password2" size="25" id="password2" onBlur="checkpassword2()" tabindex="5" />
  5.                                 <span id="checkpassword2"> </span>
  6.                         </td>
  7.                 </tr>
复制代码
下面加:
  1.                 <tr>
  2.                         <th><label for="qq">QQ *</label></th>
  3.                         <td><input type="text" id="qq" name="qq" size="25" tabindex="23" /></td>
  4.                 </tr>
复制代码
②再查找:
  1.                 <tr>
  2.                         <th><label for="qq">QQ</label></th>
  3.                         <td><input type="text" id="qq" name="qq" size="25" tabindex="23" /></td>
  4.                 </tr>
复制代码
把以上代码删掉!!(删除高级选项里的)


3、templates/default/viewthread.htm(模块文件)

①查找:
  1. {eval $postcount = 0;}
复制代码
下面加:
  1. <SCRIPT>
  2. <!--
  3. function flip(ud, img) {
  4. if (ud.style.display == "block") {
  5. ud.style.display="none";
  6. img.src = './images/sn-post/qqshow_1.gif';
  7. }else{
  8. ud.style.display="block";
  9. img.src = './images/sn-post/qqshow_2.gif';
  10. }
  11. }
  12. // -->
  13. </SCRIPT>
复制代码
②查找:
  1.                                 <td class="postauthor">
  2.                                         $post[newpostanchor] $post[lastpostanchor]
  3.                                         <cite><!--{if $forum['ismoderator']}-->
  4.                                  '
  5.                                  '
  6.                               一直到
  7.                                  '
  8.                                  '
  9.                                                 <!--{else}-->
  10.                                                         $post[author]</cite>
  11.                                                         {lang member_deleted}
  12.                                                 <!--{/if}-->
  13.                                         <!--{/if}-->
  14.                                 </td>
复制代码
改为:
  1.                                         {template snshow}
复制代码
③再查找:
  1.                                         <div class="postinfo">
  2.                                                 <strong title="{lang post_copylink}" id="postnum$post[pid]" onclick="setcopy('{$boardurl}viewthread.php?tid=$tid&page=$page$fromuid#pid$post[pid]', '{lang post_copied}')"><!--{if !empty($postno[$post[number]])}-->$postno[$post[number]]<!--{else}-->{$post[number]}{$postno[0]}<!--{/if}--></strong>
  3.                                                 <!--{if MSGBIGSIZE || MSGSMALLSIZE}-->
  4.                                                         <!--{if MSGBIGSIZE}--><em onclick="$('postmessage_$post[pid]').className='t_bigfont'">{lang big}</em><!--{/if}-->
  5.                                                         <em onclick="$('postmessage_$post[pid]').className='t_msgfont'">{lang middle}</em>
  6.                                                         <!--{if MSGSMALLSIZE}--><em onclick="$('postmessage_$post[pid]').className='t_smallfont'">{lang small}</em><!--{/if}-->
  7.                                                 <!--{/if}-->
  8.                                                 <!--{if $thread['price'] >= 0 || $post['first']}-->{lang poston} $post[dateline] <!--{/if}-->
  9.                                                 <!--{if $post['authorid'] && !$post['anonymous']}-->
  10.                                                         <!--{if !$authorid}-->
  11.                                                                 <a href="viewthread.php?tid=$post[tid]&page=$page&authorid=$post[authorid]" rel="nofollow">{lang thread_show_author}</a>
  12.                                                         <!--{else}-->
  13.                                                                 <a href="viewthread.php?tid=$post[tid]&page=$page" rel="nofollow">{lang thread_show_all}</a>
  14.                                                         <!--{/if}-->
  15.                                                 <!--{/if}-->
  16.                                         </div>
复制代码
改为:
  1.                                         <div class="postinfo">
  2.                                                 <strong title="{lang post_copylink}" id="postnum$post[pid]" onclick="setcopy('{$boardurl}viewthread.php?tid=$tid&page=$page$fromuid#pid$post[pid]', '{lang post_copied}')"><!--{if !empty($postno[$post[number]])}-->$postno[$post[number]]<!--{else}-->{$post[number]}{$postno[0]}<!--{/if}--></strong>
  3.                                                 <!--{if MSGBIGSIZE || MSGSMALLSIZE}-->
  4.                                                         <!--{if MSGBIGSIZE}--><em onclick="$('postmessage_$post[pid]').className='t_bigfont'">{lang big}</em><!--{/if}-->
  5.                                                         <em onclick="$('postmessage_$post[pid]').className='t_msgfont'">{lang middle}</em>
  6.                                                         <!--{if MSGSMALLSIZE}--><em onclick="$('postmessage_$post[pid]').className='t_smallfont'">{lang small}</em><!--{/if}-->
  7.                                                 <!--{/if}-->
  8.                                                 <!--{if $thread['price'] >= 0 || $post['first']}-->{lang poston} $post[dateline] <!--{/if}-->
  9.                                                 <!--{if $post['authorid'] && !$post['anonymous']}-->
  10.                                                         <!--{if !$authorid}-->
  11.                                                                 <a href="viewthread.php?tid=$post[tid]&page=$page&authorid=$post[authorid]" rel="nofollow">{lang thread_show_author}</a>
  12.                                                         <!--{else}-->
  13.                                                                 <a href="viewthread.php?tid=$post[tid]&page=$page" rel="nofollow">{lang thread_show_all}</a>
  14.                                                         <!--{/if}-->
  15.                                                 <!--{/if}-->
  16.                                                 <a href="###" onclick="pmwin('open', 'uid=$post[authorid]')">{lang send_pm}</a>
  17.                                                 <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>
  18.                                                 <a href="{$uchomeurl}/space.php?uid=$post[authorid]" target="_blank">{lang space}</a>
  19.                                         </div>
复制代码
④再查找:
  1.                                                                 </fieldset>
  2.                                                         <!--{else}-->
  3.                                                                 <div id="post_rate_div_$post[pid]"></div>
  4.                                                         <!--{/if}-->
  5.                                         <!--{/if}-->
  6.                                 </div>
  7.                                 <!--{if $post['signature'] && !$post['anonymous'] && $showsignatures}-->
  8.                                         <div class="signatures" style="maxHeightIE: {MAXSIGROWS}px;">
  9.                                                 $post[signature]
  10.                                         </div>
  11.                                 <!--{/if}-->
  12.                         </td>
  13.                 </tr>
  14.                 <tr>
  15.                         <td class="postauthor">
复制代码
改为:
  1.                                                                 </fieldset>
  2.                                                         <!--{else}-->
  3.                                                                 <div id="post_rate_div_$post[pid]"></div>
  4.                                                         <!--{/if}-->
  5.                                                 </div>
  6.                                         <!--{/if}-->
  7.                                 </div>
  8.                         </td>
  9.                 </tr>
  10.                 <tr><td style="vertical-align:bottom;border:0;">
  11.                                         <!--{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}-->
  12.                 </td></tr>
  13.                 <tr><td style="vertical-align:bottom;border:0;">
  14.                                         <!--{if $post['signature'] && !$post['anonymous'] && $showsignatures}-->
  15.                                                 <div class="signatures" style="maxHeightIE: {$maxsigrows}px;">
  16.                                                         $post[signature]
  17.                                                 </div>
  18.                                         <!--{/if}-->
  19.                 </td></tr>
  20.                 <tr>
  21.                         <td class="postauthor" rowspan="2">
复制代码
⑤再查找:
  1.                                         <!--{if $post['msn'] || $post['qq'] || $post['icq'] || $post['yahoo'] || $post['taobao']}-->
  2.                                         <div class="imicons">
  3.                                                 <!--{if $post['msn']}-->
  4.                                                         <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>
  5.                                                 <!--{/if}-->
  6.                                                 <!--{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}-->
  7.                                                 <!--{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}-->
  8.                                                 <!--{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}-->
  9.                                                 <!--{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}-->
  10.                                         </div>
  11.                                         <!--{/if}-->
  12.                                         <dl>{eval @eval('echo "'.$customauthorinfo[2].'";');}</dl>
复制代码
把以上代码删掉!!

⑥再查找:
  1.                                         <!--{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}-->
复制代码
把以上代码删掉!!

4、上传附件....更新....完成!!!

[ 本帖最后由 shun21 于 2008-4-28 15:48 编辑 ]

本帖子中包含更多资源

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

x
回复

使用道具 举报

lisen 发表于 2008-4-26 11:09:37 | 显示全部楼层
ip已送,和我一样的home.我只想要在个人信息栏加一个外边框.
回复

使用道具 举报

 楼主| shun21 发表于 2008-4-26 11:10:06 | 显示全部楼层
你不会吧!占我上楼~

[ 本帖最后由 shun21 于 2008-4-26 17:11 编辑 ]

本帖子中包含更多资源

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

x
回复

使用道具 举报

hsyuyu923 发表于 2008-4-26 11:17:12 | 显示全部楼层
楼主的网站弹窗N多的,汗...
回复

使用道具 举报

 楼主| shun21 发表于 2008-4-26 16:58:21 | 显示全部楼层
快更新完了!
回复

使用道具 举报

preyue 发表于 2008-4-26 17:15:37 | 显示全部楼层
不错,支持一个

[ 本帖最后由 preyue 于 2008-4-26 17:30 编辑 ]
回复

使用道具 举报

x6522500 发表于 2008-4-26 17:17:58 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

 楼主| shun21 发表于 2008-4-26 17:49:22 | 显示全部楼层
原帖由 preyue 于 2008-4-26 17:15 发表
不错,支持一个

传个图给我看下....
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-15 14:47 , Processed in 0.061799 second(s), 6 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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