wc_autoship_before_autoship_shipping (action)
Fires before the admin menu for Autoship shipping for customers rendered.
Example
<?php
/**
* @param int $customer_id
*/
function wc_autoship_before_autoship_shipping_example( $customer_id ) {
}
add_action( 'wc_autoship_before_autoship_shipping', 'wc_autoship_before_autoship_shipping_example', 10, 1 );