autoship_frequency_cart_order_item_schedule_display
(src/cart.php) In the autoship_display_cart_item_data function. The filter can be used to change the Autoship Schedule html displayed for items selected for Autoship in the Cart and Order preview page.
Example:
function change_cart_order($current_order, $label, $product_frequency_display_name, $name, $item){ return "<h3 styles='color: red'>{$label}: in {$product_frequency_display_name}</h3>"; } add_filter('autoship_frequency_cart_order_item_schedule_display', 'change_cart_order', 10, 5 );