wc_autoship_before_autoship_schedules (action)
Fires before rendering Autoship Schedules menu in My Account section for customers.
Example
/** * @param int $customer_id */ function wc_autoship_before_autoship_schedules_example( $customer_id ) { } add_action( 'wc_autoship_before_autoship_schedules', 'wc_autoship_before_autoship_schedules_example', 10, 1 );