I can see in content-single-product.php where Entrada makes the decision to call:
if( $product->is_type( ‘booking’ ) ) {
do_action( ‘woocommerce_single_product_summary’ );
} else {
Where is the logic for that action? I tried searching, but it wasn’t obvious where in woo the output was. (still learning wp/woo/entrada)
I’m interested in adding the “review block” to the output of that function.
Can I modify this in the child theme like other changes I’ve made?
Thanks.