If you are wondering whether WP Travel includes the feature to remove the title “Archives: Trips” on the trip archive page then no need to be worried as WP Travel plugin provides the feature regarding removing the title “Archives: Trips” in the trip archive page using filter code.

To remove the title “Archives: Trips“, please add the following given code in the functions.php file of your child theme.
function wp_travel_child_remove_cat_titles($title) {
if ( is_archive() ) { $title = single_cat_title( '', false ); } elseif ( is_tag() ) { $title = single_tag_title( '', false ); }
return $title;
}
add_filter( 'get_the_archive_title', 'wp_travel_child_remove_cat_titles' );
For detail information regarding how to create a child theme, please refer to our Knowledgebase.
After Removing the Archives: Trips:

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