HKEmax 由于【DX版】去除了\"新手任务\"功能,论坛有需要将新注册的用户跳转到\"任务\"页面,以衍生出来的。
对有需要的站长使用了...
新用户注册后跳转到指定页面
修改文件 : template-->default-->member-->register.htm
找到:- $(\'messageright1\').innerHTML = \'<a href="javascript:;" onclick="location.href=\\\'$dreferer\\\';">{lang login_refresh}</a>\';
复制代码
例如:- $(\'messageright1\').innerHTML = \'<a href="javascript:;" onclick="location.href=\\\'http://www.discuz.net/forum-2-1.html\\\';">{lang login_refresh}</a>\';
复制代码 找:- setTimeout(\'location.href=\\\'$dreferer\\\'\', $mrefreshtime);
复制代码
例如:- setTimeout(\'location.href=\\\'http://www.discuz.net/forum-2-1.html\\\'\', $mrefreshtime);
复制代码 如果论坛开啓了\"新用户注册Email验证\" 可以修改以下的连接
找: 共两处都需要修改- setTimeout("window.location.href=\'home.php?mod=spacecp&ac=profile&op=password\'", $mrefreshtime);
复制代码修改: home.php?mod=spacecp&ac=profile&op=password 為转向的连接
例如: 转向到\"任务\"- setTimeout("window.location.href=\'home.php?mod=task&item=new\'", $mrefreshtime);
复制代码
|