Magento: How to display customer's phone number on customer information field

后端 未结 5 906
旧时难觅i
旧时难觅i 2021-01-03 05:52

I’m trying to have the customer’s phone number show under the customer account information section. I know the phone number belongs to the customer address section but I’m t

5条回答
  •  情话喂你
    2021-01-03 06:16

    Careful if there is NO address set then this getPrimaryBillingAddress() return a non object.

    $address = $this->getCustomer()->getPrimaryBillingAddress();
    if ( $address ) echo $address->getTelephone();
    

提交回复
热议问题