wc_autoship_plugin_template (filter)
Override the default WC Autoship Plugin Template
Example
<?php
/**
* @param string $plugin_template
* @return string
*/
function wc_autoship_plugin_template_example( $plugin_template ) {
$my_custom_template = 'path/to/my/theme.php';
return $my_custom_template;
}
add_filter( 'wc_autoship_plugin_template', 'wc_autoship_plugin_template_example', 10, 1 );