Hello @ikmagine,
To change the text “Book Now” of the button beside the trip image add below given code in your functions.php file.
function wp_travel_customize_button_text() {
return "Enquire Now";
}
add_filter( ‘wp_travel_template_book_now_text’, ‘wp_travel_customize_button_text’, 20 );
Now to change the text of button in the booking form add below given code in your child theme functions.php file:
function wp_travel_custom_gettext_string_editor( $string ){
switch ($string) {
case 'Book Now':
return 'Enquire Now';
break;
}
return $string;
}
add_filter( 'gettext', 'wp_travel_custom_gettext_string_editor', 30 );
Hope this helps.
Best Regards!!