我正在尝试在客户帐户信息部分下显示客户的电话号码。我知道电话号码属于客户地址部分,但我正在尝试重新设计客户帐户信息的外观。
我为客户 ID 添加了一个新的自定义字段,并且可以使用以下代码显示它,因为客户 ID 属于 customer_entity。
<?php echo $this->__('Identification:') ?><?php echo $this->htmlEscape($this->getCustomer()->getCustid()) ?>
但现在我正试图通过使用这个来对电话号码做同样的事情
<?php echo $this->__('Telephone:') ?><?php echo $this->htmlEscape($this->getCustomer()->getTelephone()) ?>
但它不显示任何数据,因为它属于 customer_address_entity 我相信它应该是
->getAddress()->getTelephone()
代替
->getCustomer()->getTelephone()
但使用 ->getAddress 只会给我一个错误“调用非对象上的成员函数 getTelephone()”
有谁知道如何做到这一点?
作为参考,我试图在文件 customer\account\dashboard\info.phtml 上显示此数据
提前致谢。