If you are thinking about whether WP Travel includes the feature to remove the title “Trip Type” on the Trip Type archive page then do not worry as WP Travel plugin provides the feature regarding removing the title ‘Trip Type’ in the Trip Type archive page

To remove the title “Trip Type”, please add the following given code in the functions.php file of your child theme.
add_filter('get_the_archive_title', function ( $title ) {
if ( is_tax( 'itinerary_types' ) ) {
return preg_replace( '/^[\w]+([\s]?\w+):/', '', $title );
}
return $title;
} );
For detail information regarding how to create a child theme, please refer to our Knowledgebase.
Output:

Also, if you want to rename the “Trip Type” title on the Trip Type archive page. Then please add the following given filter code in the functions.php file of your child theme.
add_filter('get_the_archive_title', function ( $title ) {
if ( is_tax( 'itinerary_types' ) ) {
return preg_replace( '/^[\w]+([\s]?\w+):/', 'Your Text Here:', $title );
}
return $title;
} );
Output:

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.
Further, if you have any queries, please submit them to our Contact page.