且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Magento:如何在客户信息字段中显示客户的电话号码

更新时间:2023-11-30 13:12:16

哦,谢谢,我现在就发帖!(见原帖下的评论).

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

只需使用以下内容:

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

第一部分将为您提供所有详细信息,然后您可以根据@paperids 使用 var_dump() 进行探索.

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