Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用magento 1.6。我想编辑每封订单电子邮件中显示的项目表。我在哪里可以找到这个模板?
更具体地说,在“产品名称”下,我想添加名为“字幕”的自定义属性。
如果您知道模板在哪里,我应该能够解决其余的问题。
尝试这个:
$_item = $this->getItem(); $_product = Mage::getModel('catalog/product')->loadByAttribute('sku',$_item->getSku());
而不是 $this->getProduct()。比你可以使用 $_product->getSubtitle();