woocommerce_account_endpoint_page_not_found filter-hookWC 1.0

Usage

add_filter( 'woocommerce_account_endpoint_page_not_found', 'wp_kama_woocommerce_account_endpoint_page_not_found_filter' );

/**
 * Function for `woocommerce_account_endpoint_page_not_found` filter-hook.
 * 
 * @param  $true 
 *
 * @return 
 */
function wp_kama_woocommerce_account_endpoint_page_not_found_filter( $true ){

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

Where the hook is called

wc_template_redirect()
woocommerce_account_endpoint_page_not_found
woocommerce/includes/wc-template-functions.php 49
if ( is_wc_endpoint_url() && ! is_account_page() && ! is_checkout() && apply_filters( 'woocommerce_account_endpoint_page_not_found', true ) ) {

Where the hook is used in WooCommerce

Usage not found.