Magento 1.9 – How to Get Customer Telephone Number

magento-1.9

I want to display guest customer telephone number on success page.how can i do this?

Best Answer

you can get billing or shipping telephone by following code

$order=Mage::getModel('sales/order')->loadByIncrementId($this->getOrderId());
$order->getShippingAddress()->getTelephone();
$order->getBillingAddress()->getTelephone();

as you requested to update telephone

$billingAddress = Mage::getModel('sales/order_address')->load($order->getBillingAddress()->getId());

$billingAddress->setTelephone("value")->save();
Related Topic