woocommerce_my_account_edit_address_title filter-hookWC 1.0

Usage

add_filter( 'woocommerce_my_account_edit_address_title', 'wp_kama_woocommerce_my_account_edit_address_title_filter', 10, 2 );

/**
 * Function for `woocommerce_my_account_edit_address_title` filter-hook.
 * 
 * @param  $page_title   
 * @param  $load_address 
 *
 * @return 
 */
function wp_kama_woocommerce_my_account_edit_address_title_filter( $page_title, $load_address ){

	// filter...
	return $page_title;
}
$page_title
-
$load_address
-

Where the hook is called

In file: /templates/myaccount/form-edit-address.php
woocommerce_my_account_edit_address_title
woocommerce/templates/myaccount/form-edit-address.php 30
<h3><?php echo apply_filters( 'woocommerce_my_account_edit_address_title', $page_title, $load_address ); ?></h3><?php // @codingStandardsIgnoreLine ?>

Where the hook is used in WooCommerce

Usage not found.