如何使用Magento ver在新的oder验证电子邮件中显示自定义客户属性的值。 1.4.1.1
我已将此代码添加到/sales/model/order.php:
public function getCustomerNumber() {
if (!$this->getCustomerId()) return;
$customer = Mage::getModel('customer/customer')->load( $this->getCustomerId());
$customer = $customer->getData('customer_number');
return ($customer);
和{{var order.getCustomer()}}
按顺序发送电子邮件模板,但它得到“对象”一词,而不是正确的值。
感谢您的帮助。