Log in

View Full Version : How do I skip the "Forum Rules" page and have guests go directly to registration?


Marcel Lee
03-15-2006, 03:29 AM
I want to make registration on my board as simple and easy as possible, by taking out the "Forum Rules" page (and clicking the check-box by default); so that, when guests click the "register" link, it takes them directly to the registration page (where they enter their user-name, password; etc).

How do I do that?

Daniel
05-21-2006, 03:05 AM
Edit: Found it.

http://yoursite.com/forum/register.php?do=register&agree=1

UManiac
01-17-2008, 05:15 PM
This solution is simple, however it requires that all of the template links to register.php be changed to register.php?do=register&agree=1

Any way to do it in register.php so that when a user requests register.php it displays the registration form?

--------------- Added 1200598388 at 1200598388 ---------------

I replaced this in register.php

$_REQUEST['do'] = 'signup';

with

$_REQUEST['do'] = 'register';
$_REQUEST['agree'] = '1';

Seems to work thus far - If I run into any issues I will post back.