Magento remove “Promo” Item

前端 未结 1 1443
闹比i
闹比i 2021-01-26 09:37

How do I remove the whole \"Promo\" menu item from the Admin menu? It seems to be no separate module.

1条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-26 10:31

    Method 1 - Using local.xml

    Open /app/etc/local.xml and add the 'adminhtml' tag below

    
         
            .....
        
        
            ....
        
        
            
              
                HideMe
              
            
         
    
    

    Method 2 - Creating a Custom Module

    Create /app/code/local/MagePal/RemovePromoMenu/etc/config.xml

    
       
            
                0.9.5
            
       
            
              
                1
              
            
       
    
    

    Create /app/etc/modules/MagePal_RemovePromoMenu.xml

    
    
        
            
                true
                local
            
        
    
    

    @dsueiro Removing an Item from Magento's Admin Panel Navigation

    0 讨论(0)
提交回复
热议问题