Discuz教程网

[代码修改] 【discuz 7.0/7.1/7.2/X1/X1.5】离线用户头像灰化

[复制链接]
authicon dly 发表于 2011-3-12 13:42:54 | 显示全部楼层 |阅读模式
7.0/7.1/7.2版

找到根目录下的:viewthread.php

修改代码:
查找:
  1. $post['avatar'] = discuz_uc_avatar($post['authorid']);
复制代码
在下行添加代码[以下两种请选一个使用]:
1.离线状态头像默认灰化,头像鼠标指向正常,离开再次灰化
  1. if(!$onlineauthors[$post[authorid]])$post[avatar] = str_replace("<img","<img style='FILTER:gray()' alt='我现在是离线状态,如果有事请短信我,谢谢.' onmouseover="this.style.filter=''" onmouseout="this.style.filter='Gray();'"",$post[avatar]);
复制代码
2.离线状态头像一直灰化
  1. if(!$onlineauthors[$post[authorid]])$post[avatar] = str_replace("<img","<img style='FILTER:gray()' alt='我现在是离线状态,如果有事请短信我,谢谢.'",$post[avatar]);
复制代码


X1/X1.5版

找到:source/module/forum/forum_viewthread.php
----
修改代码:
查找:
  1. $post['avatar'] = discuz_uc_avatar($post['authorid']);
复制代码
在下行添加代码[以下两种请选一个使用]:
1.离线状态头像默认灰化,头像鼠标指向正常,离开再次灰化

  1. if(($_G['setting']['vtonlinestatus'] == 2 && $_G['forum_onlineauthors'][$post['authorid']]) || ($_G['setting']['vtonlinestatus'] == 1 && (TIMESTAMP - $post['lastactivity'] <= 10800) && !$post['invisible'])){
  2. }else{
  3. $post['avatar'] = str_replace("<img","<img style='FILTER:gray()' alt='我现在是离线状态,如果有事请短信我,谢谢.' onmouseover="this.style.filter=''" onmouseout="this.style.filter='Gray();'"",$post['avatar']);
  4. }
复制代码
2.离线状态头像一直灰化

  1. if(($_G['setting']['vtonlinestatus'] == 2 && $_G['forum_onlineauthors'][$post['authorid']]) || ($_G['setting']['vtonlinestatus'] == 1 && (TIMESTAMP - $post['lastactivity'] <= 10800) && !$post['invisible'])){
  2. }else{
  3. $post[avatar] = str_replace("<img","<img style='FILTER:gray()' alt='我现在是离线状态,如果有事请短信我,谢谢.'",$post[avatar]);
  4. }
复制代码







上一篇:discuz X变量
下一篇:【discuz 1.0】首页列表显示会员IP
authicon forever21 发表于 2011-5-7 12:59:57 | 显示全部楼层
我回不回呢 考虑再三 还是不回了吧 ^_^
authicon 计晨 发表于 2011-5-10 06:59:58 | 显示全部楼层
很好的,我喜欢
authicon 蓝天blue 发表于 2011-5-11 15:59:53 | 显示全部楼层
好东西,要下来看看
authicon Pianissimo 发表于 2011-5-14 03:59:40 | 显示全部楼层
好东东下下来看看
authicon 乐娃娃 发表于 2011-5-14 09:59:53 | 显示全部楼层
我回不回呢 考虑再三 还是不回了吧 ^_^
authicon nmzc 发表于 2011-5-16 15:59:35 | 显示全部楼层
看一下啊,嘻嘻
authicon 丁加丁 发表于 2011-5-18 05:59:35 | 显示全部楼层
不错,我喜欢
authicon nancybingling 发表于 2011-5-22 05:59:34 | 显示全部楼层
不错不错,我喜欢
authicon 计晨 发表于 2011-5-26 13:59:30 | 显示全部楼层
看帖必回
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

1314学习网 ( 浙ICP备10214163号 )

GMT+8, 2025-5-2 14:13

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

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