1

I have seen quite a bit of posts about hiding menu items in admin, the method I chose was to create a custom module and disable it through there - which seemed like the most elegant way of doing this. But I can't quite seem to get it to work. Here is what I did:

File: app/etc/modules/LDW_All.xml

<?xml version="1.0"?>
<config>
    <modules>
        <LDW_AdminMenu>
            <active>true</active>
            <codePool>local</codePool>
        </LDW_AdminMenu>
    </modules>
</config> 

File: app/code/local/LDW/AdminMenu/etc/adminhtml.xml

<?xml version="1.0" encoding="utf-8"?>
<config>
    <modules>
        <LDW_AdminMenu>
            <version>0.1.0</version>
        </LDW_AdminMenu>
    </modules>
    <adminhtml>
        <menu>
            <mobile>
                <depends><module>HideMe</module></depends>
            </mobile>
        </menu>
    </adminhtml>
</config>

Source: http://www.bubblecode.net/en/2012/01/21/magento-how-to-hide-menu-items-of-admin-panel/

4

1 に答える 1

2

@ Magento を見て「Promo」アイテムを削除

コードをローカルではなくコミュニティ フォルダーに配置したため (コード プール)

app/etc/modules/ の codePool を次のように変更する必要があります。

<codePool>local</codePool>

<codePool>community</codePool>

また、xmlファイルの名前を変更します

app/etc/modules/LDW.xml

app/etc/modules/LDW_AdminMenu.xml (または LDW_All.xml)

config.xml 内

<config>
    <modules>
        <LDW_AdminMenu>
            <version>0.1.0</version>
        </LDW_AdminMenu>
    </modules>
    <adminhtml>
        <menu>
            <xmlconnect>
                <disabled>1</disabled>
            </xmlconnect>
        </menu>
    </adminhtml>
</config>
于 2013-07-10T13:50:03.197 に答える