开发者

magento remove admin menu item

开发者 https://www.devze.com 2023-03-07 01:07 出处:网络
Is it possible,开发者_如何学Python in magento, to remove a menu item in admin? I have a new module and am pulling the reviews and ratings into a new section. I\'m not opposed to leaving them also in

Is it possible,开发者_如何学Python in magento, to remove a menu item in admin?

I have a new module and am pulling the reviews and ratings into a new section. I'm not opposed to leaving them also in the catalog section, but if its possible (and clean) I'd like to nip it out of there.


Add next lines to extension config.xml file:

<adminhtml>
   <menu>
      <catalog>
         <children>
            <reviews_ratings>
               <disabled>1</disabled>
            </reviews_ratings>
         </children>
      </catalog>
   </menu>
</adminhtml>

And clear the cache.

0

精彩评论

暂无评论...
验证码 换一张
取 消