1

我必须更改Bill to NameShip to Name标题

 admin panel->sales->orders page in Magento.

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

在此处输入图像描述

4

1 回答 1

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

于 2015-04-14T13:27:03.157 回答