Open register.php and find
PHP Code:
else if ($who == 'adult')
{
$show['coppa'] = false;
$templatename = 'register_rules';
}
and change it to:
PHP Code:
else if ($who == 'adult')
{
$show['coppa'] = false;
exec_header_redirect("register.php?do=register");
}
Remove this line:
PHP Code:
if (empty($agree))
{
eval(print_standard_error('register_not_agreed'));
}
But like Dean said, I'd recommend you keep it there.