woocommerce_after_quantity_input_field action-hookWC 3.6.0

Hook to output something after quantity input field

Usage

add_action( 'woocommerce_after_quantity_input_field', 'wp_kama_woocommerce_after_quantity_input_field_action' );

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

	// action...
}

Changelog

Since 3.6.0 Introduced.

Where the hook is called

In file: /templates/global/quantity-input.php
woocommerce_after_quantity_input_field
woocommerce/templates/global/quantity-input.php 61
do_action( 'woocommerce_after_quantity_input_field' );

Where the hook is used in WooCommerce

Usage not found.