Reputation: 2478
I'm building a theme for my site with some particularities so I need to know if modules slideshow and module promotions are enabled or not, how do I know this? Can I check this from templates?
Upvotes: 1
Views: 125
Reputation: 15151
Due to the nature of how modules can have more than one on a store, and be in different regions of a template (layouts) this is quite difficult to do. You will have to query the layout and position much like the column left/right and content top/bottom do in order to see if the module is available in that particular region and on that specific page. For how to achieve this, see the code inside the controller of your particular install version catalog/controller/common/column_left.php
for example
That said, most custom theme developers will create their own modules for the specific region you want them to be in so you can control this and check the status of the module using $this->config->get
. This would be my choice of how to achieve this so you're not reliant on other modules for your theme
Upvotes: 1