A5下载 - 努力做内容最丰富最安全的下载站!

A5站长下载站

当前位置:A5下载 > 源码技巧 > Ecshop > 修改ecshop推荐注册赠送的等级积分修改为消费积

修改ecshop推荐注册赠送的等级积分修改为消费积

时间:2015-08-29 11:03作者:fang人气:69

ecshop推荐注册,默认的是赠送等级积分,特殊情况下需要将赠送的等级积分修改为消费积分。

A5修改如下:

1、打开文件:includes/lib_passport.php

2、找到下面代码:

// 推荐开关开启

$up_uid = get_affiliate();

empty($affiliate) && $affiliate = array();

$affiliate['config']['level_register_all'] = intval($affiliate['config']['level_register_all']);

$affiliate['config']['level_register_up'] = intval($affiliate['config']['level_register_up']);

if ($up_uid)

{

if (!empty($affiliate['config']['level_register_all']))

{

if (!empty($affiliate['config']['level_register_up']))

{

$rank_points = $GLOBALS['db']->getOne(”SELECT rank_points FROM ” . $GLOBALS['ecs']->table(’users’) . ” WHERE user_id = ‘$up_uid’”);

if ($rank_points + $affiliate['config']['level_register_all'] <= $affiliate['config']['level_register_up'])

{

log_account_change($up_uid, 0, 0, $affiliate['config']['level_register_all'], 0, sprintf($GLOBALS['_LANG']['register_affiliate'], $_SESSION['user_id'], $username));

}

}

else

{

log_account_change($up_uid, 0, 0, $affiliate['config']['level_register_all'], 0, $GLOBALS['_LANG']['register_affiliate']);

}

}

代码中:0,0,$affiliate['config']['level_register_all'],0 这上面的数字分别表示:可用资金、冻结资金、等级积分、消费积分,因此修改为:0,0,0,$affiliate['config']['level_register_all'],即可实现。

标签修改,ecshop,推荐,注册,赠送,等级,积分,改为,消费

相关下载

查看所有评论+

网友评论

网友
您的评论需要经过审核才能显示

公众号