wc_autoship_before_product_autoship_options (action)
Fires before Autoship Schedule options are rendered on the product page.
Example
/**
* @param int $product_id
*/
function wc_autoship_before_product_autoship_options_example( $product_id ) {
}
add_action( 'wc_autoship_before_product_autoship_options', 'wc_autoship_before_product_autoship_options_example', 10, 1 );