woocommerce_order_tracking_form action-hookWC 6.5.0

Action hook fired in the middle of the form-tracking form (before the submit button).

Usage

add_action( 'woocommerce_order_tracking_form', 'wp_kama_woocommerce_order_tracking_form_action' );

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

	// action...
}

Changelog

Since 6.5.0 Introduced.

Where the hook is called

In file: /templates/order/form-tracking.php
woocommerce_order_tracking_form
woocommerce/templates/order/form-tracking.php 46
do_action( 'woocommerce_order_tracking_form' );

Where the hook is used in WooCommerce

Usage not found.