woocommerce_edit_account_form_tag action-hookWC 1.0

Usage

add_action( 'woocommerce_edit_account_form_tag', 'wp_kama_woocommerce_edit_account_form_tag_action' );

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

	// action...
}

Where the hook is called

In file: /templates/myaccount/form-edit-account.php
woocommerce_edit_account_form_tag
woocommerce/templates/myaccount/form-edit-account.php 22
<form class="woocommerce-EditAccountForm edit-account" action="" method="post" <?php do_action( 'woocommerce_edit_account_form_tag' ); ?> >

Where the hook is used in WooCommerce

Usage not found.