
Originally Posted by
richphitzwell
Just loaded this on a test site and the one issue I found was the captcha div does not show when registering on first try. It does redirect back showing the proper error and then the captcha div and all appropriate fields show to be entered.
http://www.kroghfamilyranch.com/cart if you want to see
just fyi.
After looking over that part of the Code, there is quick fix for this if you do not want to use the Split Login Screen.
Look for this in includes/templates/YOUR-TEMPLATES/tpl_modules_create_account.php around line 189:
Code:
<?php
if (strstr($_SERVER['REQUEST_URI'],'create_account') && CREATE_ACCOUNT_VALIDATION == 'true' || strstr($_SERVER['REQUEST_URI'],'login') && LOGIN_VALIDATION == 'true') {
?>
Change it to this
Code:
<?php
if (strstr($_SERVER['REQUEST_URI'],'create_account') && CREATE_ACCOUNT_VALIDATION == 'true' || strstr($_SERVER['REQUEST_URI'],'login') && CREATE_ACCOUNT_VALIDATION == 'true') {
?>
In the next release, I will make this a toggle as well.
Bookmarks