Skip to content

Instantly share code, notes, and snippets.

Created January 18, 2018 06:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3244a2626a4d62067ec4f690a6f73b9a to your computer and use it in GitHub Desktop.
Save anonymous/3244a2626a4d62067ec4f690a6f73b9a to your computer and use it in GitHub Desktop.
/**
*Change the default country in booking form.
*/
function wp_travel_customize_default_country_setting(){
if ( ! is_singular('itineraries') ) {
return;
}
?>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#wp-travel-country option[value="US"]').attr("selected",true);
});
</script>
<?php
}
add_action( 'wp_footer', 'wp_travel_customize_default_country_setting', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment