About this Page This is a discussion on Changing register link within the Nuke 7.x - General forums, part of the PHP-Nuke 7.x category; Hello, I am trying to change the register link on my php nuke based website to link to the register ...
Hello, I am trying to change the register link on my php nuke based website to link to the register link on the forum. Could someone point me in the direction of where I might change that?
**to point everything(links) to the Forums registration and edit profile
**do the following
************************************************** ********
***********************************
Find this in modules/Your_Account/index.php
***********************************
case "edituser":
edituser();
break;
***********************************
Replace with
***********************************
case "edituser":
Header("Refresh: 0; url=modules.php?name=Forums&file=profile&mode=edit profile");
break;
***********************************
And Find this
***********************************
case "new_user":
new_user();
break;
***********************************
And Replace with
***********************************
case "new_user":
Header("Refresh: 0; url=modules.php?name=Forums&file=profile&mode=regi ster");
break;