此积分可以极大地唤起用户抢沙发回帖的欲望
首先增加新的积分策略 抢沙发奖励积分 后台升级数据库:
- INSERT INTO `pre_common_credit_rule` ( `rid` ,
- `rulename` ,
- `action` ,
- `cycletype` ,
- `cycletime` ,
- `rewardnum` ,
- `norepeat` ,
- `extcredits1` ,
- `extcredits2` ,
- `extcredits3` ,
- `extcredits4` ,
- `extcredits5` ,
- `extcredits6` ,
- `extcredits7` ,
- `extcredits8` ,
- `fids`
- )
- VALUES ( NULL , '抢沙发', 'getsofa', '4', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', ''
- );
复制代码
打开source/include/post/post_newreply.php
找到:- !empty($_G['uid']) && updatepostcredits('+', $_G['uid'], 'reply', $_G['fid']);
复制代码
复制代码在下面加:
- if(!$thread['replies'] && $thread['authorid'] != $_G['uid'])updatecreditbyaction('getsofa', $_G['uid']);
复制代码 找到:
- if($_G['forum']['status'] == 3) {
复制代码
在上面加:
- if(!$thread['replies'] && $thread['authorid'] != $_G['uid'])updatecreditbyaction('getsofa', $_G['uid']);
复制代码
之后
后台 全局设置 启用一个积分 积分名 沙发
积分设置 积分策略 在最下面 抢沙发 设置 周期不限 次数o 奖励积分 沙发+1
后台 界面 界面设置 特子内容页 特内左侧 把积分显示 沙发 打上勾
更新缓存
|