If you are thinking about whether WP Travel includes the feature to remove the country field on the checkout page then do not worry as WP Travel plugin provides the feature regarding removing the country field on the checkout page.

To remove, please add the following given code in the functions.php file of your child theme.
function wp_travel_remove_country( $checkout_fields ){
unset( $checkout_fields['traveller_fields']['country'] );
return $checkout_fields;
}
add_filter('wp_travel_checkout_fields', 'wp_travel_remove_country' );
For detail information regarding how to create a child theme, please refer to our Knowledgebase.

Also, if you want to learn more about the filter hook that is used to rename the strings available in the WP Travel plugin, please once refer specific hook page.
Further, 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.
Additionally, if you have any queries, please submit them to our Contact page.