If you would like to display only the “Booking with Payment” option on the checkout page then WP Travel plugin includes the feature that allows you to display the Booking with payment option on the checkout page using a filter code.

To display the Booking with payment option on the checkout page, you have to add the following given filter code in the functions.php file of your child theme.
function wp_travel_customize_booking_option($fields){
$fields['payment_fields']['booking_option']['options'] = array('booking_with_payment' => 'Booking with payment' );
return $fields;
}
add_filter( 'wp_travel_checkout_fields', 'wp_travel_customize_booking_option' );
For detail information regarding how to create a child theme, please refer to our Knowledgebase.
Frontend:

Also, 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.
Further, if you have any queries, please submit them to our Contact page.
