进入后台 SQL查询
INSERT INTO `你的前缀_shop_config` (`parent_id`, `code`, `type`, `store_range`, `store_dir`, `value`, `sort_order` ) VALUES ( ‘2’, ‘onlinepay_points’, ‘text’, ”, ”, ‘100’, ‘1’);
在后台 商店设置->基本设置->会出现 onlinepay_points 为100的项目
respond.php 修改如下
$payment = new $pay_code();
$pay_result = $payment->respond();
$msg = $pay_result ? $_LANG[‘pay_success’] : $_LANG[‘pay_fail’];
if($pay_result){
if($pay_code == “alipay” || $pay_code == “tenpay” || $pay_code == “chinabank” ){
log_account_change($_SESSION[‘
user_id’], 0, 0, $GLOBALS[‘_CFG’][‘onlinepay_points’], $GLOBALS[‘_CFG’][‘onlinepay_points’],”会员在线支付送”.$GLOBALS[‘_CFG’][‘onlinepay_points’].”积分”);
}
}
}
}