If you are willing to remove the Trip Types, Activities, Group Size, and Review count from the single trip page, then worry not WP Travel plugin provides the feature regarding removing the Trip Types, Activities, Group Size, and Review count from the single trip page using a filter code.

To remove the Trip Types, Activities, Group Size, and 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[ 'trip_type' ] ); //Add this line to remove Trip Type
unset( $text_list[ 'activity' ] ); //Add this line to remove Activities
unset( $text_list[ 'group_size' ] ); //Add this line to remove Group Size
unset( $text_list[ 'reviews' ] ); //Add this line to remove 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.
Example to remove Trip Type:
function wp_travel_trip_meta_info_after_excerpt( $text_list ) {
unset( $text_list[ 'trip_type' ] );
return $text_list;
}
add_action('wptravel_after_excerpt_single_trip_page' , 'wp_travel_trip_meta_info_after_excerpt' );
Output:

Further, if you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
Additionally, if you have any queries/confusion then please submit them to our Contact page.
