Adding "Review Block" to Bookable Products

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.

Hello Mitch,

You can write your own functions through the child theme indeed. And if you need help with how to add functions and learn further, I would encourage you to look for and also ask your question on StackOverflow as they have plenty of examples.

Thank you

Thanks Sanjeev. I use Stack regularly.

I found another post here about a year ago where you indicated that you were planning to add the review block into the bookings product type details in the next release. That was several releases ago. Is this still on the roadmap?

Thanks.