By default, WP Travel displays the lowest available trip price on the Single Trip page, regardless of which pricing category it belongs to. For example, if the Child price is lower than the Adult price, the Child price will be displayed as the trip’s Starting From price.
If you want to display the minimum price from a specific pricing category such as Adult, Child, Infant, Senior, or any custom pricing categoryβyou can easily do so using the available filter hooks.
This customization is especially useful when you want the Starting From price to always represent a particular traveler type instead of automatically displaying the lowest available price.

The Single Trip page displaying the default “Starting From” price based on the lowest available pricing category.
Display the Minimum Price from a Selected Pricing Category
Add the following code to the functions.php file of your child theme or use a code snippets plugin to avoid modifying your theme files directly.
add_filter( 'wp_travel_show_min_price_from_selected_pricing_cat_single_trip_template', function () {
return true;
} );
add_filter( 'wp_travel_set_pricing_cat_to_show_min_price_single_trip_template', function () {
return 'child';
} );
Note: Replace
'child'with the slug of the pricing category you want to display. Common examples include:
adultchildinfantseniorstudent- Any custom pricing category slug

The Single Trip page displays the minimum price from the selected pricing category.
After adding the code, the Single Trip page will display the minimum price based on the selected pricing category instead of the lowest price across all categories.
Check the WP Travel documentation to learn more about configurations, modules, payments, and shortcodes.
Your feedback helps us improve. Feel free to share your thoughts!
Need assistance? Contact our support team, join our Facebook community, and subscribe to our YouTube Channel for video tutorials.
You can also find us on Facebook, Instagram, LinkedIn, TikTok, and X. Thank you for choosing WP Travel.
If you are a WP Travel Free user thinking about upgrading to Pro, simply click on the banner below.

WP Travel Editorial is a team of WordPress and travel industry experts dedicated to delivering technical resources, travel business guides, and general travel insights. With over 10 years of experience, the team provides in-depth release notes, feature updates, and informative articles to help tour operators and travel enthusiasts succeed in the evolving travel landscape.
From plugin updates and industry trends to practical travel resources, WP Travel Editorial shares valuable content that supports both the travel industry and avid travelers.






