autoship_after_schedule_options_variable (action)
(templates/product/schedule-options-variable.php) The hook allows you to add custom content below of the autoship-schedule-options for Variable Products. It takes the $product, $skin, Autoship option default choice ($default_check) as its parameters.
Code
<?php do_action('autoship_after_schedule_options_variable', $product, $skin, $default_check ); ?>
Example
function insert_after_sched_options() { echo "<h3>sched_options adtl' content example</h3>"; } add_action('autoship_after_schedule_options_variable', 'insert_after_sched_options', 10);