Menu Tools For HivePress & WooCommerce

Thanks for this. I got a fatal error when installing the latest version. So for now I am using this snippet to hide the placed and received orders from the menu:

add_filter('hivepress/v1/menus/user_account', function($menu) {
    unset($menu['items']['orders_edit']); // Received Orders
    unset($menu['items']['orders_view']); // Placed Orders
    return $menu;
}, 1000);

Based on this snippet which hides the dashboard:

add_filter(
	'hivepress/v1/menus/user_account',
	function( $menu ) {
		unset( $menu['items']['vendor_dashboard'] );

		return $menu;
	},
  1000
);