1

我想在以下位置编辑送货地址 div:admin/sales_order/view/order_id,我相信这是 Magento 管理员的订单详细信息页面。

我尝试过使用以下位置的一些文件:/app/design/adminhtml/default/default/template/sales/order/view,但我什么也没有。有谁知道该怎么做?谢谢

4

1 回答 1

1

您可以通过以下方式激活后端提示以确保这是正确的模板: http ://www.damianculotta.com.ar/2009/07/11/mostrar-phtmls-y-bloques-usados-en-el-skin- de-backend-de-magento/ 接下来你应该为管理区域的后端创建一个布局更新。您可能不会在 adminhtml 的模板中写入,因为这会在 Magento 更新中丢失。你可以是一个例子:

mage/adminhtml/etc/config.xml



<layout>
            <updates>
                <adminhtml>
                    <file>main.xml</file>
                </adminhtml>
                <report>
                    <file>report.xml</file>
                </report>
                <catalog>
                    <file>catalog.xml</file>
                </catalog>
                <customer>
                    <file>customer.xml</file>
                </customer>
                <promo>
                    <file>promo.xml</file>
                </promo>
            </updates>
</layout>
于 2012-03-02T08:42:17.850 回答