在管理面板mageno中更改sales-> orders页面中的标题

时间:2015-04-14 13:21:55

标签: php magento sales orders

我必须更改

中的Bill to NameShip to Name标题
 admin panel->sales->orders page in Magento.

但是我无法找到该页面。为此,哪个页面包含这些标题?

enter image description here

1 个答案:

答案 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'),