Title: Partial Payment Question
Last modified: September 29, 2022

---

# Partial Payment Question

 *  Resolved [Rafael Mendoza](https://wordpress.org/support/users/raffywpg/)
 * (@raffywpg)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/partial-payment-question/)
 * Hello. I just want to ask if there is a way to force the partial payment option
   and without showing the full payment in dropdown?
 * Also, for Booking options to always book with payment.
 * Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Support [wptravelsupport](https://wordpress.org/support/users/wptravelsupport/)
 * (@wptravelsupport)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/partial-payment-question/#post-16057212)
 * Hi Rafael,
 * Thank you for contacting WP Travel team.
 * Actually, if you are willing to show the partial payment option only in the payment
   mode, please add the following given filter code in the **functions.php** file
   of your child theme.
 *     ```
       function wptravel_customize_booking_option( $fields ) { 
           $fields['payment_fields']['payment_mode']['default'] = 'partial'; 
           $fields['payment_fields']['payment_mode']['options'] = array( 'partial' => 'Partial Payment' );  
           return $fields; 
       } 
       add_filter( 'wp_travel_checkout_fields', 'wptravel_customize_booking_option' );
       ```
   
 * For detail regarding creating a child theme, please once refer below-given link:
 * [https://wptravel.io/how-to-create-a-child-theme/](https://wptravel.io/how-to-create-a-child-theme/)
 * Also, If you are willing to show the Booking with payment option then you can
   select the option by going to **Admin Panel > WP Travel > Settings > Checkout**.
 * For detail regarding how to add the option under the booking option then please
   once refer below-given link:
 * [https://wptravel.io/setting-of-booking-option-in-the-checkout-page/](https://wptravel.io/setting-of-booking-option-in-the-checkout-page/)
 * Hope this helps.
 * If you have any queries further, please let us know.
 *  Plugin Support [wptravelsupport](https://wordpress.org/support/users/wptravelsupport/)
 * (@wptravelsupport)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/partial-payment-question/#post-16108698)
 * Closed this thread due to inactivity more than a week.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Partial Payment Question’ is closed to new replies.

 * ![](https://ps.w.org/wp-travel/assets/icon-256x256.gif?rev=2948554)
 * [WP Travel - Ultimate Travel Booking System, Tour Management Engine](https://wordpress.org/plugins/wp-travel/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-travel/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-travel/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-travel/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-travel/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-travel/reviews/)

## Tags

 * [partial payment](https://wordpress.org/support/topic-tag/partial-payment/)

 * 2 replies
 * 2 participants
 * Last reply from: [wptravelsupport](https://wordpress.org/support/users/wptravelsupport/)
 * Last activity: [3 years, 7 months ago](https://wordpress.org/support/topic/partial-payment-question/#post-16108698)
 * Status: resolved