Could someone help me with the following issue I have with a module. I've been stuck for a couple of hours and could do with a fresh perspective.
I have two modules ModuleA and ModuleB which both extend the same Onepage_Checkout class using rewrites. I've almost solved the issue of the rewrite but I have ran into two issues.
The first is that ModuleA and ModuleB both add a step to Onepage Checkout. Each additional step is visible but for some reason ModuleB is skipped and doesn't become active.
The second is I need to add an option to disable or enable ModuleA per store/website
I've added this code to the system.xml file but it doesn't seem to work
<enable translate="label">
<label>Enable</label>
<frontend_type>select</frontend_type>
<source_model>adminhtml/system_config_source_yesno</source_model>
<sort_order>10</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</enable>
Do I need to alter the DB table in anyway or is there something else that I have missed?
Also, if I disable ModuleB for StoreA and disable ModuleA for storeB due to dependancies will they both still be active in either store? The reason I ask is I need to have the flexibilty to enable or disable each module per store and not have them both active...
Can anyone assist? Really appreciate it...