Quote:
Originally Posted by jitgos ...if the registration page link is still available to anyone then you would have that issue of someone just going directly to the page. |
I'm not 100% sure if this is all that's needed, but a simple way to fix this is to rename register.php (ex. newregister.php) and make some changes in libs/html1.php.
Find:
PHP Code:
$main_smarty->assign('URL_register', getmyurl("register"));
Replace with:
PHP Code:
$main_smarty->assign('URL_newregister', getmyurl("newregister"));
Then you will need to change a line of code in /templates/templatename/register_step_1.tpl and /templates/templatename/register_step_2.tpl
PHP Code:
{$URL_register}
to
PHP Code:
{$URL_newregister}