【发布时间】:2015-04-14 13:21:55
【问题描述】:
我必须更改 Bill to Name 和 Ship to Name 中的标题
admin panel->sales->orders page in Magento.
但我找不到该页面。为此,哪个页面包含这些标题?
【问题讨论】:
标签: php magento ecommerce-sales
我必须更改 Bill to Name 和 Ship to Name 中的标题
admin panel->sales->orders page in Magento.
但我找不到该页面。为此,哪个页面包含这些标题?
【问题讨论】:
标签: php magento ecommerce-sales
根据您的问题并在此处回答: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'),
【讨论】: