If you are wondering whether WP Travel plugin provides a feature regarding removing/hiding Pricing name” in the mini cart of the Checkout page or not then, WP Travel plugin includes the feature that allows you to remove/hide “Pricing name” in the mini cart of the Checkout page using filter code.

remove pricing name in mini cart

To hide the pricing name in the mini cart on the checkout page, you have to add the following given filter 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.

Remove/Hide pricing name in mini cart:

remove pricing name in mini cart

Also, if you want to learn more about the filter hook that is used to show/remove, please once refer to a 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/confusion then please submit them to our Contact page.