Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi, you can click “Screen Options” at top right, then unchecked Report option.

    Thread Starter Saurabh Jain

    (@saurabhsjain91)

    Hi terrytsang, thanks for super-fast response. I also want to remove it from WooCommerce->Reports menu, from which i ca see all the reports of different products and things.

    Hi Saurabh, you can paste below code into theme functions.php:

    add_action( 'admin_menu', 'wc_reports_remove_menus', 1000 );
    
    function wc_reports_remove_menus() {
    	remove_submenu_page( 'woocommerce', 'wc-reports' );
    }
    Thread Starter Saurabh Jain

    (@saurabhsjain91)

    Hi terrytsang, thanks a lot. That’s what i was wanted.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to disable reports from dashboard’ is closed to new replies.