wc_autoship_after_autoship_shipping (action)
Fires after the admin menu for Autoship shipping for a customer is rendered.
Example
<?php
/**
* @param int $customer_id
*/
function wc_autoship_after_autoship_shipping_example( $customer_id ) {
}
add_action( 'wc_autoship_after_autoship_shipping', 'wc_autoship_after_autoship_shipping_example', 10, 1 );