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

后端 未结 5 882
旧时难觅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:11

    Oh, thanks I'll post now! (see comments under original post).

    Simply use the following:

    $this->getCustomer()->getPrimaryBillingAddress()->getTelephone();
    

    The first part will give you all the details, which you could then explore with var_dump() as per @paperids.

提交回复
热议问题