woocommerce_order_tracking_form_start

woocommerce_order_tracking_form_start

Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

do_action('woocommerce_order_tracking_form_start') is found 1 times:

  • /templates/order/form-tracking.php line 31
    	 * Action hook fired at the beginning of the form-tracking form.
    	 *
    	 * @since 6.5.0
    	 */
    	do_action( 'woocommerce_order_tracking_form_start' );
    	?>
    
    	<p><?php esc_html_e( 'To track your order please enter your Order ID in the box below and press the "Track" button. This was given to you on your receipt and in the confirmation email you should have received.', 'woocommerce' ); ?></p>
    
    	<p class="form-row form-row-first"><label for="orderid"><?php esc_html_e( 'Order ID', 'woocommerce' ); ?></label> <input class="input-text" type="text" name="orderid" id="orderid" value="<?php echo isset( $_REQUEST&#91;'orderid'&#93; ) ? esc_attr( wp_unslash( $_REQUEST&#91;'orderid'&#93; ) ) : ''; ?>" placeholder="<?php esc_attr_e( 'Found in your order confirmation email.', 'woocommerce' ); ?>" /></p><?php // @codingStandardsIgnoreLine ?>
    	<p class="form-row form-row-last"><label for="order_email"><?php esc_html_e( 'Billing email', 'woocommerce' ); ?></label> <input class="input-text" type="text" name="order_email" id="order_email" value="<?php echo isset( $_REQUEST&#91;'order_email'&#93; ) ? esc_attr( wp_unslash( $_REQUEST&#91;'order_email'&#93; ) ) : ''; ?>" placeholder="<?php esc_attr_e( 'Email you used during checkout.', 'woocommerce' ); ?>" /></p><?php // @codingStandardsIgnoreLine ?>