我们可以禁用特定页面的magento扩展

时间:2016-01-02 15:02:16

标签: magento

  

如何禁用特定页面的扩展名,例如我想仅在magento中禁用主页扩展名

<config>
<modules>
<first_module>
<active>false</active>
<codepool>local</codepool>
</first_module>
</modules>
</config>

2 个答案:

答案 0 :(得分:2)

我没有遇到过这种类型的禁用功能。我们通常做的是,我们从页面负责布局句柄下的local.xml中删除页面上的模块,并采取负责任的参考。

例如。如果我没有在主页上为eg.newsletter提供一个特定的模块,那么,

<cms_index_index> <!--/ Homepage -->
  <reference name="footer"> <!--/ Reference where the module appearing -->
    <remove name="newsletter"/> <!--/ Remove -->
  </reference>
</cms_index_index>

答案 1 :(得分:0)

这在Magento 1.x中是不可能的

您只能为每个商店视图或网站启用/禁用模块。