我必须更改
中的Bill to Name
和Ship to Name
标题
admin panel->sales->orders page in Magento.
但是我无法找到该页面。为此,哪个页面包含这些标题?
答案 0 :(得分:0)
根据您的问题并在此处回答:https://magento.stackexchange.com/a/41929/4997
在这种情况下,很可能这对你有用。
此外,您还需要在此处进行修改:
$this->addColumn('billing_name', array(
'header' => Mage::helper('sales')->__('Bill to Name'),
'index' => 'billing_name',
));
您可以将'header' => Mage::helper('sales')->__('Bill to Name'),
更改为您想要的'header' => Mage::helper('sales')->__('MY CUSTOM FIELD'),