woocommerce_template_url filter-hookWC 1.0

__construct function.

Usage

add_filter( 'woocommerce_template_url', 'wp_kama_woocommerce_template_url_filter' );

/**
 * Function for `woocommerce_template_url` filter-hook.
 * 
 * @param  $string 
 *
 * @return 
 */
function wp_kama_woocommerce_template_url_filter( $string ){

	// filter...
	return $string;
}
$string
-

Where the hook is called

WC_Brands::__construct()
woocommerce_template_url
woocommerce/includes/class-wc-brands.php 27
$this->template_url = apply_filters( 'woocommerce_template_url', 'woocommerce/' ); // phpcs:ignore WooCommerce.Commenting.CommentHooks.MissingHookComment

Where the hook is used in WooCommerce

Usage not found.