WP Travel Pro plugin provides the feature of sending a reminder notification to the customer via email about the remaining partial payment to be paid before going on the trip.

While enabling the Remaining Partial Payment Reminder option WP Travel Pro plugin provides the options to send the partial payment reminder notification email before 15 days, 5 days, and 1 day before the trip. If you are willing to change the payment reminder notification Email Cycle then the WP Travel plugin provides the feature regarding changing the partial payment reminder notification Email Cycle.

partial payment reminder

To change the partial payment reminder notification Email Cycle, please add the following given filter code in the functions.php file of your child theme.

function wptravel_customized_partial_payment_reminder_cycle( $email_cycle ) { 
      $email_cycle = array( 
          array( 
               'label' => __( 'Send email before 20 days' ), 
               'value' => 20, 
          ), 
          array( 
               'label' => __( 'Send email before 30 days' ), 
               'value' => 30, 
          ), 
          array( 
               'label' => __( 'Send email before 42 days' ), 
               'value' => 42, 
          ), 
      ); 
      return $email_cycle; 
} 
add_filter( 'wptravel_partial_payment_reminder_email_cycle_option', 'wptravel_customized_partial_payment_reminder_cycle' );

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

After adding filter code:

modify the partial payment reminder

For detail assistance regarding sending payment reminder email notification feature, please refer to our Knowledgebase.

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.