autoship_populate_order_dashboard_icon_tooltip_components
The filter includes a 1. tooltip array of the current information to be displayed, and 2. current WC_Order associated with that row as parameters. In addition the final string can be modified via a new ` autoship_populate_order_dashboard_icon_tooltip` filter.
Example
// return tooltip array for a particular order function xx_get_tooltip_array($tooltip, $order){ if($order == 1234){ return $tooltip; } } add_filter('autoship_populate_order_dashboard_icon_tooltip_components', 'xx_get_tooltip_array', 10, 2);