woocommerce_review_after_comment_text action-hookWC 1.0

Usage

add_action( 'woocommerce_review_after_comment_text', 'wp_kama_woocommerce_review_after_comment_text_action' );

/**
 * Function for `woocommerce_review_after_comment_text` action-hook.
 * 
 * @param  $comment 
 *
 * @return void
 */
function wp_kama_woocommerce_review_after_comment_text_action( $comment ){

	// action...
}
$comment
-

Where the hook is called

In file: /templates/single-product/review.php
woocommerce_review_after_comment_text
woocommerce/templates/single-product/review.php 63
do_action( 'woocommerce_review_after_comment_text', $comment );

Where the hook is used in WooCommerce

Usage not found.