woocommerce_after_single_product action-hookWC 1.0

Usage

add_action( 'woocommerce_after_single_product', 'wp_kama_woocommerce_after_single_product_action' );

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

	// action...
}

Where the hook is called

In file: /templates/content-single-product.php
woocommerce_after_single_product
woocommerce/templates/content-single-product.php 76
<?php do_action( 'woocommerce_after_single_product' ); ?>

Where the hook is used in WooCommerce

Usage not found.