Welcome to Physcode Support Forum :)

How to remove rating in tour

– Remove tab review in single tour use custom code bellow:

add_filter( 'tour_booking_default_product_tabs', 'remove_product_tabs_location', 98 );
function remove_product_tabs_location( $tabs ) {
     // remove tab reviews in single tour
      unset( $tabs['reviews'] );
      return $tabs;
}

– Remove star in product use custom code bellow:

function remove_rating_child_theme() {
     remove_action( 'woocommerce_item_rating', 'woocommerce_template_loop_rating', 5 );
} 
add_action( 'init', 'remove_rating_child_theme', 15 );