我已经在前端菜单中创建了自定义扩展并提供了url链接,当我从Magento管理员端禁用此扩展时,链接未从前端删除,链接仍在显示。删除此链接需要提供什么?
<default>
<reference name="top.links">
<action method="addLink" translate="label title" module="retailer"
>
<label>Virtual Retailer Signup</label>
<url>Retailer</url>
<title>Retailer</title>
<prepare>true</prepare>
<urlParams/>
<position>0</position>
</action>
</reference>
</default>
答案 0 :(得分:1)
您无法从管理面板中真正禁用扩展程序。 &#34;禁用模块输出&#34;配置有点误导,它只是跳过渲染相应模块的块和管理菜单。
仍然应用布局更新,这意味着布局中不使用自己的块的每个更改都不受&#34;禁用模块输出&#34;
的影响。如果扩展程序没有自带的&#34;禁用&#34;配置,您需要使用app/etc/modules
中的模块激活文件完全停用它。替换
<active>true</active>
与
<active>false</active>