如何禁用特定頁面的擴展,例如我只想在Magento禁用擴展主頁我們可以禁用特定頁面的Magento擴展
<config>
<modules>
<first_module>
<active>false</active>
<codepool>local</codepool>
</first_module>
</modules>
</config>
如何禁用特定頁面的擴展,例如我只想在Magento禁用擴展主頁我們可以禁用特定頁面的Magento擴展
<config>
<modules>
<first_module>
<active>false</active>
<codepool>local</codepool>
</first_module>
</modules>
</config>
我還沒有遇到這個還挺禁用功能的方式。我們通常做的是,我們從頁面負責的佈局句柄下的local.xml中移除頁面上的模塊,並採取負責任的參考。
例如,如果我對eg.newsletter沒有一個具體的模塊頁面上的話,
<cms_index_index> <!--/ Homepage -->
<reference name="footer"> <!--/ Reference where the module appearing -->
<remove name="newsletter"/> <!--/ Remove -->
</reference>
</cms_index_index>
它是刪除阻止不禁用擴展名,但我認爲刪除名稱是唯一的解決方案,以實現某種結果,謝謝S.K.C –
這是不可能在Magento的1.x
只能啓用/禁用每家店的視圖或網站的模塊。
確實從主頁的'layout handle'中刪除一個模塊會解決嗎? –