Question

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

Was it helpful?

Solution 2

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

enter image description here

OTHER TIPS

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>
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top