Remove home and go directly to orders in wp-admin for WooCommerce

Remove home and go directly to orders in wp-admin for WooCommerce on your child site.

Snippet Type

Execute on Child Sites

Snippet

function action_admin_menu() {
    // Contains the URI of the current page.
    $current_url = $_SERVER['REQUEST_URI'];
    
    // Make sure wc-admin / customers page will still work
    if ( strpos( $current_url, 'customers' ) == false) {
        remove_submenu_page( 'woocommerce', 'wc-admin' );
    }
}
add_action( 'admin_menu', 'action_admin_menu', 99, 0 );
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.