Hmm... That didn't work in "User Info" block. But I found it out... Instead of editing the various login blocks do this:
Open index.php from the modules/Your_Account directory and find the following code within the login function (around line 830 in Nuke 7.6 - this may vary, but look for the login function)
Code:
if ($redirect == "" ) {
Header("Location: modules.php?name=Your_Account&op=userinfo&bypass=1&username=$username");
} else if ($mode == "") {
Header("Location: modules.php?name=Forums&file=$forward");
} else if ($t !="") {
Header("Location: modules.php?name=Forums&file=$forward&mode=$mode&t=$t");
} else {
Header("Location: modules.php?name=Forums&file=$forward&mode=$mode&f=$f");
Change this line ...
Code:
if ($redirect == "" ) {
Header("Location:modules.php?name=Your_Account&op=userinfo&bypass=1&username=$username");
Edit the URL to take members to another page upon login.
Remove modules.php?name=Your_Account&op=userinfo&bypass=1 &username=$username and replace it with the URL of your choosing.
This works great... :wink: