autoship_after_schedule_options (action)

(templates/product/schedule-options.php) The hook allows you to add custom content below of the autoship-schedule-options for Simple Products. It takes the $product, $prices, $skin, Autoship option default choice ($default_check) as its parameters.

Code

<?php do_action('autoship_after_schedule_options', $product, $prices, $skin, $default_check ); ?>

Example

function insert_after_sched_options() {
    echo "<h3>sched_options adtl' content example</h3>";
};
add_action('autoship_after_schedule_options', 'insert_after_sched_options',10);