Remove check from phone field in magento
- Open table “eav_attribute” set “is_required = 0, for the attribute_code “telephone”
- Open files billin.phtml and shipping.phtml both will be located in “app\design\frontend\yourtheme\default\template\checkout\onepage”
- Now open Abstract.php located at “app\code\core\Mage\Customer\Model\Address” and comment on following lines
if (!Zend_Validate::is($this->getTelephone(), 'NotEmpty')) { $errors[] = $helper->__('Please enter the telephone number.'); }