我想在以下位置编辑送货地址div:admin / sales_order / view / order_id,我相信这是Magento Admin的订单详情页面。
我尝试了一些文件:/ app / design / adminhtml / default / default / template / sales / order / view,但我什么都没有。有谁知道怎么做?感谢
答案 0 :(得分:1)
您可以激活后端提示以确保这是正确的模板: http://www.damianculotta.com.ar/2009/07/11/mostrar-phtmls-y-bloques-usados-en-el-skin-de-backend-de-magento/ 接下来,您应该为管理区域的后端创建布局更新。您可能不会在adminhtml的模板中写入,因为这会在Magento Update中丢失。 你可以成为一个例子:
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>