Hi, I have some problems redefining the main magento block. In my module I need to override Mage_Catalog_Block_Navigation
<blocks> <catalog> <rewrite> <navigation>Mycompany_Mymodule_Catalog_Block_Navigation</navigation> </rewrite> </catalog> </blocks>
but this is already overridden by another magento extension from another company:
<blocks> <catalog> <rewrite> <navigation>Othercompany_Othermodule_Block_Navigation</navigation> </rewrite> </catalog> </blocks>
Both extensions override different methods and they do not know each other, but magento reads the second redefining company, not mine. I do not want to use module dependencies. Is there a way to not violate the two extension functions.
source share