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