woocommerce_before_single_product
Hook: woocommerce_before_single_product.
Usage
add_action( 'woocommerce_before_single_product', 'wp_kama_woocommerce_before_single_product_action' ); /** * Function for `woocommerce_before_single_product` action-hook. * * @return void */ function wp_kama_woocommerce_before_single_product_action(){ // action... }
Where the hook is called
woocommerce_before_single_product
woocommerce/templates/content-single-product.php 27
do_action( 'woocommerce_before_single_product' );
Where the hook is used in WooCommerce
woocommerce/includes/wc-template-hooks.php 313
add_action( 'woocommerce_before_single_product', 'woocommerce_output_all_notices', 10 );