如何覆盖 magento 2 adminhtml 模板文件?
How can I override magento 2 adminhtml template file?
我想覆盖 magento 2 中的 vendor/magento/module-sales/view/adminhtml/templates/order/view/items/renderer/default.html
文件。请帮忙。
您可以设置主题回退,因为它在前端工作
<config>
<stores>
<admin>
<design>
<theme>
<default>new_theme</default>
</theme>
</design>
</admin>
</stores>
</config>
然后就可以在app/design/adminhtml/default/new_theme/
中的正确路径下复制
我想覆盖 magento 2 中的 vendor/magento/module-sales/view/adminhtml/templates/order/view/items/renderer/default.html
文件。请帮忙。
您可以设置主题回退,因为它在前端工作
<config>
<stores>
<admin>
<design>
<theme>
<default>new_theme</default>
</theme>
</design>
</admin>
</stores>
</config>
然后就可以在app/design/adminhtml/default/new_theme/