Log in

View Full Version : Mini Mods - Bypass registration rules and add to signup page


ringleader
12-14-2008, 10:00 PM
Description: This mod will remove the first step of the registration process that asks a user to agree to the forum rules, and add it to the following registration page where a user normally chooses a username. All steps (except coppa) will now be available as a single-page signup for users.

Tested & Working on 3.6.10 and 3.7.3 PL1

INSTALLATION INSTRUCTIONS:
1. Download product-moverules.xml from this thread.
2. Go to Admincp -> Manage Products -> Add/Import Product to import this product.
3. Edit template register.

FIND
$customfields_other

ADD AFTER

<fieldset class="fieldset">
<legend>$vbphrase[forum_rules]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td>$vbphrase[to_proceed_must_agree]</td>
</tr>
<tr>
<td>
<div class="page" style="border:thin inset; padding:$stylevar[cellpadding]px;<if condition="!is_browser('konqueror')"> height:175px; overflow:auto</if>">

<if condition="$show['coppa']">
<!-- coppa regulations -->
<p><strong>$vbphrase[coppa_policy]</strong></p>

<phrase 1="$vboptions[bbtitle]" 2="$vboptions[forumhome].php$session[sessionurl_q]" 3="register.php?$session[sessionurl]do=coppaform" 4="$vboptions[webmasteremail]">$vbphrase[coppa_rules_description]</phrase>
<!-- / coppa regulations -->
</if>

<!-- regular forum rules -->
<phrase 1="$vboptions[forumhome].php$session[sessionurl_q]" 2="$vboptions[bbtitle]">$vbphrase[forum_rules_description]</phrase>
<!-- regular forum rules -->

</div>
<div><label for="cb_rules_agree"><input type="checkbox" name="agreebypass" id="cb_rules_agree" value="1" /><strong><phrase 1="$vboptions[bbtitle]">$vbphrase[read_agree_abide_by_rules]</phrase></strong></label></div>
</td>
</tr>
</table>
</fieldset>


4. You're done! Don't forget to click Install.

Attached image: The registration process will bring you directly to this page with the registration rules embedded in it.

janslu
12-15-2008, 10:35 AM
Thanks :-)
Just what I needed.

ringleader
12-15-2008, 01:24 PM
Thanks :-)
Just what I needed.

Glad you like it. Thanks for the install!

janslu
12-15-2008, 05:35 PM
I didn't check properly. It doesn't work on my forum (3.8.0 rc1). No matter if I check the box I land on a "You didn't accept rules" page. Any idea what may be wrong?

ringleader
12-15-2008, 06:49 PM
My bad.

Change this in the template edit:

<div><label for="cb_rules_agree"><input type="checkbox" name="agree" id="cb_rules_agree" value="1" /><strong><phrase 1="$vboptions[bbtitle]">$vbphrase[read_agree_abide_by_rules]</phrase></strong></label></div>


to this:


<div><label for="cb_rules_agree"><input type="checkbox" name="agreebypass" id="cb_rules_agree" value="1" /><strong><phrase 1="$vboptions[bbtitle]">$vbphrase[read_agree_abide_by_rules]</phrase></strong></label></div>

janslu
12-15-2008, 07:34 PM
Thanks. Everything works fine.

mooreaa
01-10-2009, 10:08 AM
This mod stopped working in 3.8. Anyway to get this working again?

xlguy
01-13-2009, 05:11 PM
I'd also love to get this for 3.8 if possible?

Lincoln
01-19-2009, 02:28 PM
I had to make a super-fast-and-dirty hack to make this work again. This is a core file change, so don't do it unless you're fine doing it before every upgrade:

In register.php find this:

if (!$vbulletin->GPC['agree'])
{
eval(standard_error(fetch_error('register_not_agre ed', $vbulletin->options['forumhome'], $vbulletin->session->vars['sessionurl_q'])));
}
And comment out the "eval" line:
if (!$vbulletin->GPC['agree'])
{
#eval(standard_error(fetch_error('register_not_agr eed', $vbulletin->options['forumhome'], $vbulletin->session->vars['sessionurl_q'])));
}
It's something like line 587 or so in 3.8. Anywho, that's the "bad" way of fixing the issue. :erm: Personally I don't care since this is like the third thing I have to hack in register.php to make the registration process not suck so bad.

DotSauce
02-03-2009, 05:59 AM
Quick and dirty hack is installed and working on 3.8

CLKeenan
02-05-2009, 07:30 PM
I'm on vbulletin 3.7.2 and I tried installing this mod and it only worked halfway. It added the forum rules to the registration page, but it didn't remove the forum rules page before it.

Has anyone else had this problem with 3.7.2? Another thing that could be causing this problem is the fact that I'm using a vbDrupal installation as my backbone. However, I do have my registration method set to vbulletin so I dont think that would be the cause of the problem.

Thanks for any help in advance!

Vaupell
02-06-2009, 06:04 PM
haha love the plugin :p was playing around with the register php and that plugin
messed it up so now it skips age verification + rules alltogether and jumps straigth
to normal registrations.

Vaupell
02-06-2009, 06:18 PM
Edit with this plugin edit.. it works on 3.8.1 as intended.

changeing signup to checkdate
which still enableds DOB on 3.8.1
else its without DOB.

// if ($_REQUEST['do'] == 'signup')
if ($_REQUEST['do'] == 'checkdate')
{
$_REQUEST['do'] = 'register';
$_POST['agree'] = '1';
}

Mod installed.. tx. :up: :up:

timhj
06-11-2009, 07:26 AM
No issues with 3.8.2 fyi... thanks.

ihstiv
12-09-2009, 10:04 PM
works great. thanks.

JohorBahru
09-24-2011, 02:33 PM
it's working on 3.8.4 without any extra modification :)

doob
08-26-2012, 07:04 AM
I had to hack the plugin to this to get it to work on 3.8.2.

if ($_REQUEST['do'] = 'signup')
{
$_REQUEST['do'] = 'register';
$_POST['agree'] = '1';
}