I have a Module that loads a whole bunch of Observers for a specific task on one theme. I've setup a mobile theme that doesn't need this specific module. How do I disable the module for that theme ?
I read the answers on Magento, how to disable module programmatically? that isn't really helpful for my case because I don't have any controllers in the module.
I am checking the Package name if (Mage::getSingleton('core/design_package')->getPackageName() == 'package') return true; but this doesn't work for the observed core_collection_abstract_load_after, it just crashes. So I want to not load anything at all to spare some processing time.