woocommerce_my_account_my_downloads_title filter-hookWC 1.0

Usage

add_filter( 'woocommerce_my_account_my_downloads_title', 'wp_kama_woocommerce_my_account_downloads_title_filter' );

/**
 * Function for `woocommerce_my_account_my_downloads_title` filter-hook.
 * 
 * @param  $esc_html__ 
 *
 * @return 
 */
function wp_kama_woocommerce_my_account_downloads_title_filter( $esc_html__ ){

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

Where the hook is called

In file: /templates/myaccount/my-downloads.php
woocommerce_my_account_my_downloads_title
woocommerce/templates/myaccount/my-downloads.php 29
<h2><?php echo apply_filters( 'woocommerce_my_account_my_downloads_title', esc_html__( 'Available downloads', 'woocommerce' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></h2>

Where the hook is used in WooCommerce

Usage not found.