名称: 自定义"自定义签名"颜色For Discuz!5.x
适用: Discuz! 5.x
作者: 小水水
更新: 2006-4-1 01:50
效果请看下图:
[quote]
[/quote]
文件列表:
./viewthread.php
./memcp.php
./templates/default/viewthread.htm
./templates/default/memcp_profile.htm
安装步骤如下:
1:后台升级数据库:
代码:- ALTER TABLE `cdb_memberfields` ADD `csheightlight` VARCHAR( 6 ) NOT NULL AFTER `customstatus` ;
复制代码
2: 修改viewthread.php
查找:
替换为:- mf.customstatus, mf.csheightlight
复制代码
3: 修改templates/default/viewthread.htm
查找:
替换为:- <span style="color:#$post[csheightlight];">$post[customstatus]</span>
复制代码
4: 修改memcp.php
查找:- $cstatusadd = $allowcstatus ? ', customstatus=\''.cutstr(censor(dhtmlspecialchars($cstatusnew)), 30).'\'' : '';
复制代码
在下面添加为:- $cstatusadd .= $allowcstatus ? ', csheightlight=\''.cutstr(censor(dhtmlspecialchars($csheightlight)), 7 ,'').'\'' : '';
复制代码
5: 修改templates/default/memcp_profile.htm
查找:- <input type="text" name="cstatusnew" size="25" value="$member[customstatus]"></td>
复制代码
替换:- <input type="text" name="cstatusnew" size="25" value="$member[customstatus]"> 颜色<input type="text" name="csheightlight" size="6" value="$member[csheightlight]"> <a href="plugins/heightlight/colorcode.html" target="_blank">点击此处查看颜色代码</a></td>
复制代码
6: 上传压缩包内文件,完成!
[ 本帖最后由 伊泽浩 于 2007-6-21 00:10 编辑 ] |