woocommerce_grouped_product_list_before_(column_id) action-hookWC 1.0

Usage

add_action( 'woocommerce_grouped_product_list_before_(column_id)', 'wp_kama_woocommerce_grouped_product_list_before_column_id_action' );

/**
 * Function for `woocommerce_grouped_product_list_before_(column_id)` action-hook.
 * 
 * @param  $grouped_product_child 
 *
 * @return void
 */
function wp_kama_woocommerce_grouped_product_list_before_column_id_action( $grouped_product_child ){

	// action...
}
$grouped_product_child
-

Where the hook is called

In file: /templates/single-product/add-to-cart/grouped.php
woocommerce_grouped_product_list_before_(column_id)
woocommerce/templates/single-product/add-to-cart/grouped.php 57
do_action( 'woocommerce_grouped_product_list_before_' . $column_id, $grouped_product_child );

Where the hook is used in WooCommerce

Usage not found.