Hello,
Thank you for contacting WP Travel team!
Regarding disabling the review tab in the individual trip go through Admin Panel > Trips > Individual Trip > Tabs > Reviews as shown in the attached screenshot https://prnt.sc/9NdjdWHq7Xmo
Also, if you have enabled the “Use Global Tabs Layout” option on the individual trip then disable the review tab going through Admin Panel > WP Travel > Settings > Trips > Tabs > Review as shown in the attached screenshot.https://prnt.sc/b67X2Kq7iZwj
Hope this helps you.
Hi, thanks for explaining the solution to this issue. It does disable the review stars shown with the trip name but doesn’t remove the reviews section as shown in the screenshot: https://snipboard.io/sKim4v.jpg
Please help me remove the reviews feature completely from the trip.
Hi,
Glad that we could help you.
Also, regarding removing the review count from the single trip page, please add the following given code in the functions.php file of your child theme.
function wp_travel_trip_meta_info_after_excerpt( $text_list ) {
unset( $text_list[ 'reviews' ] );
return $text_list;
}
add_action('wptravel_after_excerpt_single_trip_page' , 'wp_travel_trip_meta_info_after_excerpt' );
For detail information regarding how to create a child theme, please refer to our Knowledgebase.
Hope this helps.
Thanks for the additional code. It fixes the issue.
Hi,
Glad that we could help you.
If you have any further queries related to WP Travel, please do not hesitate to contact us.