Hi Diva, May I trouble you for some assistance in packaging this up into a downloadable addon?
It is regards the Create Account Section
1) When I disable CSS and complete all fields, rather than getting a "When you hit send, you should be redirected to the session timed out page." I am returned to the index page. I get no error logs in my CACHE folder and the account is NOT created. So is this the correct action?
2) in includes/templates/YOUR_TEMPLATE/templates/tpl_modules_create_account.php
Code:
<!-- NOSPAM -->
<input style="visibility:hidden; display:none;" name="leaveblank" type="text">
<br class="clearBoth" />
<!-- NO SPAM -->
What does it do, other than create a hidden text field? With this added I have TWO hidden text fields. I have tested the form with both leaving this blank or filled in, and it seems to have no effect?... It is the text input field that is created with
Code:
<?php
// BOF insert for anti-spam-login
?>
<input style="visibility:hidden; display:none;" name="leaveblank" type="text">
<?php
// EOF insert for anti-spam-login
?>
That sends the user to the index page when filled in.
Is it safe to not include
Code:
<!-- NOSPAM -->
<input style="visibility:hidden; display:none;" name="leaveblank" type="text">
<br class="clearBoth" />
<!-- NO SPAM -->
--------------------------------------
I ask as your technical knowledge is far greater than mine and your input highly appreciated.