reportadminopencart-3

Need to hide Report Tab from opencart admin panel


I need to remove the report tab from admin panel mentioned in attached image.

OPEN CART ADMIN PANEL


Solution

  • You can hide it using CSS. to file: admin/view/stylesheet/stylesheet.css add:

    li#menu-report {
        display: none;
    }