Overriding a Magento Adminhtml template file

malagajack

New Member
I'm attempting to override a particular block on a page, in this case it's the Sales_Order_View_History template. The problem I'm seeing is that this block is already being overridden.The custom module that is overriding this block is using an observer that basically does: when History.php is to be loaded, load Historytwo.php instead. History.php is also being used on two separate pages in the back end. I must only override it on one page. This has gotten me absolutely lost. I do believe that the module I'm wanting to override the template of is only overriding the one I'd like to override.What I have seen as the generally accepted format for overriding blocks is:\[code\]<adminhtml> <rewrite> <sales_order_view_companyhistory> Namespace_Package_Blocks_Adminhtml_Sales_Order_View_Companyhistory_Content</\[/code\]The above code is giving me a broken layout that is stopping the rendering of most of the blocks/templates.
 
Back
Top