문제

I have upgraded magento version to 2.2.3. I am trying to rewrite adminhtml template

Magento_Sales::order/view/info.phtml

Using below code of sales_order_view.xml of my custom module

enter image description here

Also I have tried with below code:

enter image description here

But both are not working. It was working before upgrade to 2.2.3

도움이 되었습니까?

해결책 2

I have resolved this by using below code of sales_order_view.xml of my custom module

enter image description here

다른 팁

It smells like the same happened to me here Magento2 - missing adminhtml custom block after upgrade to 2.2

So, try adding a module dependency

<module name="Vendor_Module">
    <sequence>
        <module name="Temando_Shipping"/>
    </sequence>
</module>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top