• Resolved allegrojane

    (@allegrojane)


    When I go into my Products area, 3/4 of the page is covered with a “connecting my store” block and the “admin: historical analytics data.” I’m not using either one and it forces me to scroll down every time I want to access a product. They take up way too much space.
    Is there any way to get rid of them?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Add these into a code snippet plugin or into the functions.php file of the active child theme.

    add_filter( 'woocommerce_admin_disabled', '__return_true' );
    add_filter( 'woocommerce_marketing_menu_items', '__return_empty_array' );
    add_filter( 'woocommerce_helper_suppress_admin_notices', '__return_true' );
    Thread Starter allegrojane

    (@allegrojane)

    Thank you. Helpful to have that. I actually just clicked on both, even though I didn’t really want to, thinking they’d go away…and they did : )

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to hide all the admin stuff at top of page’ is closed to new replies.