In the admin panel select Configuration>Minimum Values
Set the value for "Telephone Number" to blank. This means no characters should be present in the field... not zero ... just blank.
That is the first step. Next step, we'll want to prevent OSC from writing "Required" to the form table after the telephone entry.
Locate the file "english.php" in the following directory: catalog/includes/languages/english.php
Find the following line in "english.php"
define('ENTRY_TELEPHONE_NUMBER_TEXT', ' <small><font color="#AABBDD"></font>Required</small>');
The simplest way to fix the problem, is to leave the entry and just remove "required" from the line. For example:
define('ENTRY_TELEPHONE_NUMBER_TEXT', ' <small><font color="#AABBDD"></font></small>');
Save the file and upload to the proper directory on your site.
Now, customers have the option of adding their telephone number, but are not required to.
Hope this helps anyone
---Will














