PDA

View Full Version : Skipping Forum Rules


dfc005
02-04-2009, 11:45 PM
Does anyone know how I can skip the "Forum Rules" step in the registration process. I understand the concerns of why it's there in the first place and skipping it is bad but still want to do it.

There are a few mods out there but none seem to work for vB 3.8 at least not that I could find.

The most common idea is to create a plugin on register_start and pass it the agree value such as this....


if (empty($_REQUEST['do']) || $_REQUEST['do'] == 'signup')
{
$_REQUEST['do'] = 'register';
$vbulletin->GPC['agree'] = 1;
}


Doesn't seem to work though.... Anyone got any ideas? Am I missing something?

Vaupell
02-06-2009, 06:12 PM
thats no sweat..

install this mod here (https://vborg.vbsupport.ru/showthread.php?t=198913&highlight=Rules)

IF you only inport/install the plugin it will skip rules and age verification.

IF you do the template edits you can still have rules shown on profile registration :p

I got it on my 3.8.1 board, buggy, but does what i want it to do :p

dfc005
02-08-2009, 08:19 PM
Cheers mate, that's perfect!