Hello @maxbuzz,
We will inspect the issue regarding the header image and fix them if found and released in the next update.
As for removing the “Destination” from the header from the title of the archive page, add below given code in your child theme functions.php file.
function wp_travel_child_remove_cat_titles($title) {
if ( is_archive() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '<span class="vcard">' . get_the_author() . '</span>' ;
}
return $title;
}
add_filter( 'get_the_archive_title', 'wp_travel_child_remove_cat_titles' );
Hope this helps.
Thank you.