wc_get_template_part filter-hookWC 1.0

Usage

add_filter( 'wc_get_template_part', 'wp_kama_wc_get_template_part_filter', 10, 3 );

/**
 * Function for `wc_get_template_part` filter-hook.
 * 
 * @param  $template 
 * @param  $slug     
 * @param  $name     
 *
 * @return 
 */
function wp_kama_wc_get_template_part_filter( $template, $slug, $name ){

	// filter...
	return $template;
}
$template
-
$slug
-
$name
-

Where the hook is called

wc_get_template_part()
wc_get_template_part
woocommerce/includes/wc-core-functions.php 281
$template = apply_filters( 'wc_get_template_part', $template, $slug, $name );

Where the hook is used in WooCommerce

Usage not found.