woocommerce_after_quantity_input_field хук-событиеWC 3.6.0

Hook to output something after quantity input field

Использование

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...
}

Список изменений

С версии 3.6.0 Введена.

Где вызывается хук

В файле: /templates/global/quantity-input.php
woocommerce_after_quantity_input_field
woocommerce/templates/global/quantity-input.php 61
do_action( 'woocommerce_after_quantity_input_field' );

Где используется хук в WooCommerce

Использование не найдено.