谁能告诉我您如何编辑magento的这一部分我正在尝试更改电话和传真线路中前缀的T:和F:。
address.phtml 调用<?php echo $this->getPrimaryBillingAddressHtml() ?>
这是一种方法:
public function getPrimaryBillingAddressHtml()
{
$address = $this->getCustomer()->getPrimaryBillingAddress();
if ($address instanceof Varien_Object) {
return $address->format('html');
} else {
return Mage::helper('customer')->__('You have not set a default billing address.');
}
}
在班上 Mage_Customer_Block_Account_Dashboard_Address
然后我的想法用完了....我无法锻炼打印的内容以及如何更改它....?