woocommerce_after_my_account action-hookWC 1.0

Deprecated from version 2.6.0. It is no longer supported and can be removed in future releases. It is recommended to replace this hook with the same one.

Deprecated woocommerce_after_my_account action.

Usage

add_action( 'woocommerce_after_my_account', 'wp_kama_woocommerce_after_my_account_action' );

/**
 * Function for `woocommerce_after_my_account` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_after_my_account_action(){

	// action...
}

Changelog

Deprecated since 2.6.0

Where the hook is called

In file: /templates/myaccount/dashboard.php
woocommerce_after_my_account
woocommerce/templates/myaccount/dashboard.php 79
do_action( 'woocommerce_after_my_account' );

Where the hook is used in WooCommerce

Usage not found.