wc_autoship_before_product_autoship_options_variable (action)
Fires before Autoship Schedule options are rendered on the product page for a variable product.
Example
<?php /** * @param int $product_id */ function wc_autoship_before_product_autoship_options_variable_example( $product_id ) { } add_action( 'wc_autoship_before_product_autoship_options_variable', 'wc_autoship_before_product_autoship_options_variable_example', 10, 1 );