Oba-san
- Join Date:
- Sep 2003
- Location:
- Ohio
- Posts:
- 62,757
- Plugin Contributions:
- 1
How to remove phone/fax number from registration form...?
Well ... a search via the Tools ... Developers Tool Kit ... on the word:
phone
Showed me a number of files and one referenced the size ...
Peeking at:
/includes/modules/create_account.php
around lines 230 - 233 I found:
if (strlen($telephone) < ENTRY_TELEPHONE_MIN_LENGTH) {
$error = true;
$messageStack->add('create_account', ENTRY_TELEPHONE_NUMBER_ERROR);
}
To trim that, as well as test the size, I would change the code to:
if (strlen(trim($telephone)) < ENTRY_TELEPHONE_MIN_LENGTH) {
$error = true;
$messageStack->add('create_account', ENTRY_TELEPHONE_NUMBER_ERROR);
}
NOTE: be sure to use your templates and overrides for this change ... :smile: