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?
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?