woocommerce_after_single_product
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
woocommerce_after_single_product
woocommerce/templates/content-single-product.php 76
<?php do_action( 'woocommerce_after_single_product' ); ?>