Re: Fax Number: Create Account be required
I don't see an entry under min values for the fax number, so its not being checked on account creation.
You'll need to add something like
if (strlen($fax) < 8) {
$error = true;
$messageStack->add('create_account', 'Hey, you forgot your Tax ID');
}
to create_account.php
I guess you could make this harder and add the correct checks for min values, an entry in your languages file etc, but that sounds a lot like work
Lazy and willing to work very hard to stay that way
Bookmarks