Quote:
Originally Posted by Martyh
Hi,
If I wanted an unregistered user to view the form but not be able to submit it until they become registered, is there a setting for that or any way to accomplish it ?
Thanks
|
No setting but you could use form hooks.
Form Hook: Before Submit:
PHP Code:
if (!$vbulletin->userinfo[userid])
{
$complete = false;
$preview = true;
$formoutput = 'Only registered users can submit this form.';
}