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

To remove the pricing name on the checkout page, please add the following given code in the functions.php file of your child theme.

 function hide_pricing(){
    return false;
 }
 
 add_filter('wp_travel_show_pricing_label_on_name', 'hide_pricing');

For detail information regarding how to create a child theme, please refer to our Knowledgebase.

Output:

remove pricing name

Also, if you want to learn more about the filter hook that is used to remove the pricing name in the traveler form and mini cart section on the checkout page, please once refer to the 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 FacebookInstagram, and Twitter.

Additionally, if you have any queries, please submit them to our Contact page.